uuuh things.

This commit is contained in:
mathie
2026-07-01 14:31:17 +02:00
parent 41770ab641
commit 0393840933
17 changed files with 597 additions and 78 deletions

27
src/bricks/NavBar.astro Normal file
View File

@@ -0,0 +1,27 @@
<nav class="side">
<a href="/">HOME</a>
<a href="/about">ABOUT</a>
<a href="/blog">BLOG</a>
<a href="/works">WORKS</a>
<a href="/contact">CONTACT</a>
<a href="/links">LINKS</a>
<a href="/legal">LEGAL</a>
</nav>
<style lang="scss">
nav {
display: grid;
grid-column: 1;
gap: 0;
background-color: var(--gem);
text-align: right;
a {
font-weight: 500;
padding: .1rem .5rem .1rem .5rem;
color: var(--paper);
&:hover {
background-color: var(--ink);
}
}
}
</style>