martials.no/src/links.ts
Martin Berg Alstad 83f018c3b8 Initial commit
2024-09-25 22:20:54 +02:00

24 lines
300 B
TypeScript

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