Files
boilerplate-fe/src/config/navigation.ts
Fahri Can Seçer fd8dceab1a
All checks were successful
UI Deploy (Next-Auth Support) 🎨 / build-and-deploy (push) Successful in 2m39s
main
2026-01-30 03:31:18 +03:00

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