martials.no/src/links.ts

24 lines
300 B
TypeScript
Raw Normal View History

2024-09-25 22:20:47 +02:00
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