Innit
This commit is contained in:
13
src/pages/index.astro
Normal file
13
src/pages/index.astro
Normal 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
18
src/pages/rsvp.astro
Normal 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>
|
Reference in New Issue
Block a user