This commit is contained in:
2025-02-02 02:13:50 -06:00
parent 0c1c729fd4
commit e118614d91
15 changed files with 4375 additions and 1 deletions

13
src/pages/index.astro Normal file
View File

@ -0,0 +1,13 @@
---
import Layout from "../layouts/Layout.astro";
---
<Layout>
<div class="flex flex-col gap-4">
<div class="text-center">❤️ Natasha + Ixabat ❤️</div>
<div class="flex flex-row gap-2 justify-center items-center">
<a class="btn btn-primary" href="/rsvp">RSVP Now</a>
</div>
</div>
</Layout>

18
src/pages/rsvp.astro Normal file
View File

@ -0,0 +1,18 @@
---
import Layout from "../layouts/Layout.astro";
import RSVP from "../components/RSVP.tsx";
---
<Layout>
<div class="flex flex-col gap-4">
<div class="text-center text-4xl">
Please RSVP using the form below:
</div>
<RSVP client:load />
<div class="flex flex-row gap-2 justify-center items-center">
<a class="btn btn-primary" href="/">Home</a>
</div>
</div>
</Layout>