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,
|
2024-10-09 21:30:05 +02:00
|
|
|
to: "/"
|
2024-09-25 22:20:47 +02:00
|
|
|
},
|
|
|
|
{
|
2024-10-12 18:29:44 +02:00
|
|
|
label: m.myProjects,
|
|
|
|
to: "/projects"
|
2024-09-25 22:20:47 +02:00
|
|
|
},
|
|
|
|
{
|
2024-10-12 18:29:44 +02:00
|
|
|
label: m.myLinks,
|
|
|
|
to: "/links"
|
|
|
|
},
|
|
|
|
{
|
2025-02-15 13:29:01 +01:00
|
|
|
label: m.uses,
|
2025-01-19 20:02:40 +01:00
|
|
|
to: "/uses"
|
2024-10-12 18:29:44 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
label: m.contactMe,
|
|
|
|
to: "/contact"
|
2024-10-09 21:30:05 +02:00
|
|
|
}
|
2024-09-25 22:20:47 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
export default Links
|