Skip to content

Instantly share code, notes, and snippets.

@nataliaconde
Created February 4, 2025 12:27
Show Gist options
  • Save nataliaconde/fd363982031a8f202da3fd809598d428 to your computer and use it in GitHub Desktop.
Save nataliaconde/fd363982031a8f202da3fd809598d428 to your computer and use it in GitHub Desktop.
<!-- index.astro -->
---
import Layout from "../layouts/Layout.astro";
import Journal from "../components/Journal";
---
<Layout>
<nav>
<a href='/journal'>Log your experience &#x270F</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