66 lines
1.4 KiB
TypeScript
66 lines
1.4 KiB
TypeScript
import { TWUI_LINK_LIST_LINK_OBJECT } from "@/components/lib/elements/LinkList";
|
|
import { GitBranch, Linkedin, Mail } from "lucide-react";
|
|
import { ReactNode } from "react";
|
|
|
|
export const HeaderLinks: TWUI_LINK_LIST_LINK_OBJECT[] = [
|
|
{
|
|
title: "Home",
|
|
url: "/",
|
|
strict: true,
|
|
},
|
|
{
|
|
title: "About",
|
|
url: "/about",
|
|
},
|
|
{
|
|
title: "Skills",
|
|
url: "/skills",
|
|
},
|
|
{
|
|
title: "Work",
|
|
url: "/work",
|
|
},
|
|
{
|
|
title: "Blog",
|
|
url: "/blog",
|
|
},
|
|
{
|
|
title: "Contact",
|
|
url: "/contact",
|
|
},
|
|
];
|
|
|
|
export type SocialLinksType = {
|
|
name?: string;
|
|
href: string;
|
|
icon: ReactNode;
|
|
};
|
|
|
|
export const SocialLinks: SocialLinksType[] = [
|
|
{
|
|
name: "Git",
|
|
href: "https://git.tben.me/explore/repos",
|
|
icon: <GitBranch size={17} />,
|
|
},
|
|
// {
|
|
// name: "Github",
|
|
// href: "https://github.com/BenjaminToby",
|
|
// icon: <Github size={17} />,
|
|
// },
|
|
{
|
|
name: "Linkedin",
|
|
href: "https://www.linkedin.com/in/benjamin-toby/",
|
|
icon: <Linkedin size={17} />,
|
|
},
|
|
// {
|
|
// name: "Teams",
|
|
// href: "https://team.tben.me/",
|
|
// icon: <Users size={17} />,
|
|
// },
|
|
{
|
|
name: "Mail",
|
|
href: "mailto:ben@tben.me",
|
|
icon: <Mail size={17} />,
|
|
},
|
|
];
|