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: , }, // { // name: "Github", // href: "https://github.com/BenjaminToby", // icon: , // }, { name: "Linkedin", href: "https://www.linkedin.com/in/benjamin-toby/", icon: , }, // { // name: "Teams", // href: "https://team.tben.me/", // icon: , // }, { name: "Mail", href: "mailto:ben@tben.me", icon: , }, ];