2024-09-25 22:20:47 +02:00
|
|
|
import * as m from "./paraglide/messages.js"
|
|
|
|
|
|
|
|
interface Link {
|
|
|
|
label: string
|
2024-10-09 21:30:05 +02:00
|
|
|
to: `/${string}`
|
2024-09-25 22:20:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const Links: Link[] = [
|
|
|
|
{
|
|
|
|
label: m.home(),
|
2024-10-09 21:30:05 +02:00
|
|
|
to: "/"
|
2024-09-25 22:20:47 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
label: m.myProjects(),
|
2024-10-09 21:30:05 +02:00
|
|
|
to: "/project"
|
2024-09-25 22:20:47 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
label: m.contactMe(),
|
2024-10-09 21:30:05 +02:00
|
|
|
to: "/contact-me"
|
|
|
|
}
|
2024-09-25 22:20:47 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
export default Links
|