diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-02-03 14:08:16 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-02-03 14:08:16 -0500 |
| commit | 0077087a5179c2ffdec07ee38f3ffbbb01853dde (patch) | |
| tree | 8c21d9d6b2194909c90e5080a6fb75a3282f274c /src/pages/guestbook.astro | |
| parent | c7264e3ace8a6b1e22420702f00296a4bdadb6da (diff) | |
| download | personal-website-0077087a5179c2ffdec07ee38f3ffbbb01853dde.tar.gz personal-website-0077087a5179c2ffdec07ee38f3ffbbb01853dde.tar.bz2 personal-website-0077087a5179c2ffdec07ee38f3ffbbb01853dde.zip | |
Guestbook; No more hardcoded date
Diffstat (limited to 'src/pages/guestbook.astro')
| -rw-r--r-- | src/pages/guestbook.astro | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/pages/guestbook.astro b/src/pages/guestbook.astro new file mode 100644 index 0000000..0827802 --- /dev/null +++ b/src/pages/guestbook.astro @@ -0,0 +1,19 @@ +--- +import Page from '../layouts/Page.astro' +import "../styles/cards.css"; +--- +<Page title="Guestbook" description="Use this page to send me a message"> + <main> + <article> + <h1>John Doe</h1> + <small>January 1, 2024</small> + <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. + Nam id orci non diam bibendum euismod quis sit amet purus. + Fusce fermentum facilisis placerat. Mauris varius ante elit, et + luctus enim blandit sit amet. + Pellentesque ullamcorper dapibus suscipit. + </p> + <a href="http://google.com">Website</a> + </article> + </main> +</Page> |
