Files
web/src/components/header/links.ts

15 lines
459 B
TypeScript

interface HeaderLink {
id: number;
href: string;
label: string;
color: string;
}
export const Links: HeaderLink[] = [
{ id: 0, href: "/", label: "Home", color: "text-green" },
{ id: 1, href: "/about", label: "About", color: "text-yellow" },
{ id: 2, href: "/projects", label: "Projects", color: "text-blue" },
{ id: 3, href: "/blog", label: "Blog", color: "text-purple" },
{ id: 4, href: "/resume", label: "Resume", color: "text-aqua" }
];