refactor: implement responsive side navigation with new portal sidebar configuration

This commit is contained in:
poyrazavsever
2026-06-07 07:40:57 +03:00
parent 855723ffd1
commit 47b9f728e6
3 changed files with 225 additions and 56 deletions
+25
View File
@@ -0,0 +1,25 @@
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 },
],
},
];