24 lines
300 B
TypeScript
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
|