migrate to vercel; bump version

This commit is contained in:
2026-03-31 12:11:30 -07:00
parent 11f05e0d6f
commit 99e4e65d92
106 changed files with 399 additions and 553 deletions

View 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" }
];