Some checks failed
Build and deploy website / build (push) Failing after 22s
- 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>
29 lines
398 B
TypeScript
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
|