refactor: redistribute main.ts logic into Astro components

This commit is contained in:
2026-05-03 21:02:25 +02:00
parent ad2a07a88e
commit e588042876
27 changed files with 1175 additions and 69 deletions

10
src/pages/checkout.astro Normal file
View File

@@ -0,0 +1,10 @@
---
import BaseLayout from "../layouts/BaseLayout.astro";
import CheckoutView from "../components/CheckoutView.astro";
---
<BaseLayout title="Checkout">
<main>
<CheckoutView />
</main>
</BaseLayout>