2025-02-15 18:01:17 +01:00
|
|
|
---
|
|
|
|
import LocaleLink from "@/components/links/LocaleLink.astro"
|
|
|
|
import Links from "@/links"
|
|
|
|
---
|
|
|
|
|
|
|
|
<div class="flex justify-end">
|
|
|
|
{
|
|
|
|
Links.map(({ to, label }) => (
|
|
|
|
<LocaleLink
|
|
|
|
to={to}
|
2025-02-16 11:49:06 +01:00
|
|
|
class={"m-2 not-hover:!text-cat-text font-bold font-mono"}
|
2025-02-15 18:01:17 +01:00
|
|
|
>
|
|
|
|
~/{label()}
|
|
|
|
</LocaleLink>
|
|
|
|
))
|
|
|
|
}
|
|
|
|
</div>
|