📱 Responsive header

This commit is contained in:
2025-08-30 18:11:26 -04:00
parent b8445f4a1b
commit eef297d4a1
12 changed files with 447 additions and 213 deletions
+10
View File
@@ -0,0 +1,10 @@
export interface NavLink {
label: string;
path: string;
}
export const navLinks: NavLink[] = [
{ label: 'Blog', path: 'blog' },
{ label: 'Now', path: 'now' },
{ label: 'Projects', path: 'projects' },
];