2024-10-12 18:29:44 +02:00
|
|
|
import * as m from "@/paraglide/messages.js"
|
|
|
|
import type { NavLink } from "@/utils/linking.ts"
|
2024-09-25 22:20:47 +02:00
|
|
|
|
|
|
|
interface Link {
|
2024-10-12 18:29:44 +02:00
|
|
|
label: () => string
|
|
|
|
to: NavLink
|
2024-09-25 22:20:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const Links: Link[] = [
|
|
|
|
{
|
2024-10-12 18:29:44 +02:00
|
|
|
label: m.home,
|
2025-02-15 14:59:32 +01:00
|
|
|
to: "/",
|
2024-09-25 22:20:47 +02:00
|
|
|
},
|
|
|
|
{
|
2024-10-12 18:29:44 +02:00
|
|
|
label: m.myProjects,
|
2025-02-15 14:59:32 +01:00
|
|
|
to: "/projects",
|
2024-09-25 22:20:47 +02:00
|
|
|
},
|
|
|
|
{
|
2024-10-12 18:29:44 +02:00
|
|
|
label: m.myLinks,
|
2025-02-15 14:59:32 +01:00
|
|
|
to: "/links",
|
2024-10-12 18:29:44 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
label: m.contactMe,
|
2025-02-15 14:59:32 +01:00
|
|
|
to: "/contact",
|
|
|
|
},
|
2024-09-25 22:20:47 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
export default Links
|