martials.no/src/links.ts
Martin Berg Alstad 54db411930
Some checks failed
Build and deploy website / build (push) Failing after 22s
More style changes, removed test projects, favicon
- Fix missing aria-labels
- Fix breadcrumbs on specific projects
- Removed uses from NavBar
- Center image on project page
- Colour link on project page
- Initial README

Signed-off-by: Martin Berg Alstad <git@martials.no>
2025-02-15 19:29:06 +01:00

29 lines
398 B
TypeScript

import * as m from "@/paraglide/messages.js"
import type { NavLink } from "@/utils/linking.ts"
interface Link {
label: () => string
to: NavLink
}
const Links: Link[] = [
{
label: m.home,
to: "/",
},
{
label: m.myProjects,
to: "/projects",
},
{
label: m.myLinks,
to: "/links",
},
{
label: m.contactMe,
to: "/contact",
},
]
export default Links