blob: 661dff21a87179940237dc0c25622eba2cec5763 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
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 />
<Guestbook client:visible />
</main>
</Page>
|