Updates
This commit is contained in:
@@ -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",
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user