All checks were successful
UI Deploy (Next-Auth Support) 🎨 / build-and-deploy (push) Successful in 2m39s
15 lines
328 B
TypeScript
15 lines
328 B
TypeScript
export type NavItem = {
|
|
label: string;
|
|
href: string;
|
|
protected?: boolean;
|
|
public?: boolean;
|
|
onlyPublic?: boolean;
|
|
visible?: boolean;
|
|
children?: NavItem[];
|
|
};
|
|
|
|
export const NAV_ITEMS: NavItem[] = [
|
|
{ label: "home", href: "/home", public: true },
|
|
{ label: "predictions", href: "/predictions", public: true },
|
|
];
|