main
All checks were successful
UI Deploy (Next-Auth Support) 🎨 / build-and-deploy (push) Successful in 2m39s

This commit is contained in:
2026-01-30 03:31:18 +03:00
parent ee1cf4807d
commit fd8dceab1a
4 changed files with 74 additions and 51 deletions

View File

@@ -1,15 +1,14 @@
export type NavChildItem = {
label: string;
href: string;
};
export type NavItem = {
label: string;
href: string;
children?: NavChildItem[];
protected?: boolean;
public?: boolean;
onlyPublic?: boolean;
visible?: boolean;
children?: NavItem[];
};
export const NAV_ITEMS: NavItem[] = [
{ label: "home", href: "/home" },
{ label: "about", href: "/about" },
{ label: "home", href: "/home", public: true },
{ label: "predictions", href: "/predictions", public: true },
];