mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 11:03:50 +00:00
15 lines
459 B
TypeScript
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" }
|
|
];
|