Files
martials.no/src/components/header/Navbar.astro
Martin Berg Alstad 023c8b7c85 Update general style
- Smaller width of page
- Center navbar
- Fonts
- Catppuccin Mocha colours
- TODO.md
- Show all uses at the same time
- and more...
2025-02-15 18:01:17 +01:00

18 lines
331 B
Plaintext

---
import LocaleLink from "@/components/links/LocaleLink.astro"
import Links from "@/links"
---
<div class="flex justify-end">
{
Links.map(({ to, label }) => (
<LocaleLink
to={to}
class={"m-2 hover:text-cat-mauve font-bold font-mono"}
>
~/{label()}
</LocaleLink>
))
}
</div>