fries-website/src/components/Navigation.astro

19 lines
305 B
Plaintext

<nav id="nav-container">
<a href="/">Home</a>
<a href="/blog">Blog</a>
<a href="/projects">Projects</a>
</nav>
<style>
#nav-container {
display: flex;
flex-direction: row;
font-size: 20px;
justify-content: center;
}
#nav-container a {
margin-left: 10px;
margin-right: 10px;
}
</style>