Button group to switch languages.

Localized pathname function for links.

inlang/paraglide-astro package

Signed-off-by: Martin Berg Alstad <git@martials.no>
This commit is contained in:
2024-10-09 21:30:05 +02:00
parent 87184c431d
commit c701a510f7
8 changed files with 800 additions and 8 deletions

View File

@ -2,22 +2,22 @@ import * as m from "./paraglide/messages.js"
interface Link {
label: string
to: string
to: `/${string}`
}
const Links: Link[] = [
{
label: m.home(),
to: "/",
to: "/"
},
{
label: m.myProjects(),
to: "/project",
to: "/project"
},
{
label: m.contactMe(),
to: "/contact-me",
},
to: "/contact-me"
}
]
export default Links