aboutsummaryrefslogtreecommitdiff
path: root/src/pages/guestbook.astro
blob: 3ea4c284a290061ffcaf12913ed842d533f09846 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
import Page from '../layouts/Page.astro'
import "../styles/cards.css";
import GuestbookForm from '../components/GuestbookForm'
import Guestbook from '../components/Guestbook'
---
<Page title="Guestbook" description="Use this page to send me a message">
    <main>
        <div class="card">
            <h2>Welcome to my Guestbook!</h2>
            <p>Feel free to send a nice message here!</p>
        </div>
        <GuestbookForm client:visible />
        <div class="grid">
            <Guestbook client:visible />
        </div>
    </main>
</Page>
<script>

</script>