Created
February 4, 2025 12:27
-
-
Save nataliaconde/fd363982031a8f202da3fd809598d428 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- index.astro --> | |
--- | |
import Layout from "../layouts/Layout.astro"; | |
import Journal from "../components/Journal"; | |
--- | |
<Layout> | |
<nav> | |
<a href='/journal'>Log your experience ✏</a> | |
</nav> | |
<Journal client:load/> | |
</Layout> | |
<style> | |
nav{ | |
margin-block: 3rem; | |
text-align: center; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment