aboutsummaryrefslogtreecommitdiff
path: root/src/pages/guestbook.astro
blob: 9f6ad3412c7deaf14bfcc3ce1ba08e60af85fc8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
import Page from '../layouts/Page.astro'
import "../styles/cards.css";
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>
        <Guestbook client:visible />
    </main>
</Page>