mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 19:13:51 +00:00
migrate to vercel; bump version
This commit is contained in:
14
src/components/header/links.ts
Normal file
14
src/components/header/links.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
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" }
|
||||
];
|
||||
Reference in New Issue
Block a user