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 }, ];