18 lines
331 B
Plaintext
Raw Normal View History

---
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>