import { SidebarNavItem } from "@app/components/SidebarNav";
import {
Home,
Settings,
Users,
Link as LinkIcon,
Waypoints,
Combine,
Fingerprint,
KeyRound,
TicketCheck
} from "lucide-react";
export const orgLangingNavItems: SidebarNavItem[] = [
{
title: "Overview",
href: "/{orgId}",
icon:
}
];
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: "API Keys",
href: "/{orgId}/settings/api-keys",
icon:
},
{
title: "Settings",
href: "/{orgId}/settings/general",
icon:
}
];
export const adminNavItems: SidebarNavItem[] = [
{
title: "All Users",
href: "/admin/users",
icon:
},
{
title: "API Keys",
href: "/admin/api-keys",
icon:
},
{
title: "Identity Providers",
href: "/admin/idp",
icon:
},
{
title: "License",
href: "/admin/license",
icon:
}
];