Initial commit: Van's DIY & Bastelbedarf Astro shop

This commit is contained in:
qcigano
2026-08-02 13:22:55 +02:00
commit 2e340f7a8a
92 changed files with 11022 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
---
import Layout from "../../layouts/Layout.astro";
import type { Locale } from "../../i18n/config";
import { useTranslations } from "../../i18n/ui";
const lang: Locale = "de";
const t = useTranslations(lang);
---
<Layout title={t.checkout.thankYouTitle} lang={lang} path="/checkout/danke/">
<section class="section">
<div class="container text-center danke">
<span class="eyebrow">🩵 {t.checkout.thankYouEyebrow}!</span>
<h1>{t.checkout.thankYouTitle}</h1>
<p class="lead">{t.checkout.thankYouLead}</p>
<a class="btn btn-primary" href="/shop/">{t.checkout.continueShopping}</a>
</div>
</section>
</Layout>
<script>
localStorage.removeItem("vandiy_cart_v1");
window.dispatchEvent(new CustomEvent("cart:changed"));
</script>