martials.no/src/components/Navbar.astro

14 lines
201 B
Plaintext
Raw Normal View History

2024-09-25 22:20:47 +02:00
---
import Links from "../links"
---
<div class="flex justify-end">
{
Links.map(({ to, label }) => (
<a href={to} class="m-2 hover:underline">
{label}
</a>
))
}
</div>