Files
ghall.space/src/data/nav-links.ts
T
2025-10-28 17:17:41 -04:00

11 lines
216 B
TypeScript

export interface NavLink {
label: string;
path: string;
}
export const navLinks: NavLink[] = [
{ label: "Blog", path: "blog/page/1" },
{ label: "Now", path: "now" },
{ label: "Projects", path: "projects" },
];