refactor: implement responsive side navigation with new portal sidebar configuration
This commit is contained in:
@@ -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 },
|
||||
],
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user