main
All checks were successful
UI Deploy (Next-Auth Support) 🎨 / build-and-deploy (push) Successful in 2m39s
All checks were successful
UI Deploy (Next-Auth Support) 🎨 / build-and-deploy (push) Successful in 2m39s
This commit is contained in:
@@ -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 },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user