Files
neta/config/portal-sidebar.ts
T

33 lines
668 B
TypeScript

import {
FolderKanban,
Sparkles,
} from "lucide-react";
export type PortalSidebarNavItem = {
title: string;
href?: string;
icon?: any;
items?: PortalSidebarNavItem[];
};
export type PortalSidebarNavGroup = {
title: string;
items: PortalSidebarNavItem[];
};
export const portalSidebarData: PortalSidebarNavGroup[] = [
{
title: "GENEL BAKIŞ",
items: [
{ title: "Dashboard", href: "/portal", icon: Sparkles },
],
},
{
title: "SÜREÇLER",
items: [
{ title: "Görevlerim", href: "/portal/tasks", icon: FolderKanban },
{ title: "Revizyon Talepleri", href: "/portal/revisions", icon: Sparkles },
],
}
];