import { SidebarNavItem } from "@app/components/SidebarNav"; import { Home, Settings, Users, Link as LinkIcon, Waypoints, Combine } from "lucide-react"; export const rootNavItems: SidebarNavItem[] = [ { title: "Home", href: "/" // icon: } ]; export const orgNavItems: SidebarNavItem[] = [ { title: "Sites", href: "/{orgId}/settings/sites" // icon: }, { title: "Resources", href: "/{orgId}/settings/resources" // icon: }, { title: "Access Control", href: "/{orgId}/settings/access", // icon: , autoExpand: true, children: [ { title: "Users", href: "/{orgId}/settings/access/users", children: [ { title: "Invitations", href: "/{orgId}/settings/access/invitations" } ] }, { title: "Roles", href: "/{orgId}/settings/access/roles" } ] }, { title: "Shareable Links", href: "/{orgId}/settings/share-links" // icon: }, { title: "Settings", href: "/{orgId}/settings/general" // icon: } ]; export const adminNavItems: SidebarNavItem[] = [ { title: "All Users", href: "/admin/users" // icon: } ];