This commit is contained in:
Benjamin Toby
2025-07-20 10:56:17 +01:00
parent b6a5982f02
commit 668b596402
13 changed files with 59 additions and 100 deletions
+15 -20
View File
@@ -1,37 +1,32 @@
import { TWUI_LINK_LIST_LINK_OBJECT } from "@/components/lib/elements/LinkList";
import { GitBranch, Github, Linkedin, Mail, Users } from "lucide-react";
import { ReactNode } from "react";
export type HeaderLinkType = {
name: string;
href: string;
current?: boolean;
};
export const HeaderLinks: HeaderLinkType[] = [
export const HeaderLinks: TWUI_LINK_LIST_LINK_OBJECT[] = [
{
name: "Home",
href: "/",
current: true,
title: "Home",
url: "/",
strict: true,
},
{
name: "About",
href: "/about",
title: "About",
url: "/about",
},
{
name: "Skills",
href: "/skills",
title: "Skills",
url: "/skills",
},
{
name: "Work",
href: "/work",
title: "Work",
url: "/work",
},
{
name: "Blog",
href: "/blog",
title: "Blog",
url: "/blog",
},
{
name: "Contact",
href: "/contact",
title: "Contact",
url: "/contact",
},
];