18 lines
331 B
Plaintext
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>
|