import { BarChart3, Bell, BookOpen, CircleAlert, ClipboardList, LayoutDashboard, LogOut, Shield, UserCircle2, Users, Users2, X, } from "lucide-react" import type { ComponentType } from "react" import { NavLink } from "react-router-dom" import { cn } from "../../lib/utils" import { BrandLogo } from "../brand/BrandLogo" type NavItem = { label: string to: string icon: ComponentType<{ className?: string }> } const navItems: NavItem[] = [ { label: "Dashboard", to: "/dashboard", icon: LayoutDashboard }, { label: "User Management", to: "/users", icon: Users }, { label: "Role Management", to: "/roles", icon: Shield }, { label: "Content Management", to: "/content", icon: BookOpen }, { label: "Notifications", to: "/notifications", icon: Bell }, { label: "User Log", to: "/user-log", icon: ClipboardList }, { label: "Issue Reports", to: "/issues", icon: CircleAlert }, { label: "Analytics", to: "/analytics", icon: BarChart3 }, { label: "Team Management", to: "/team", icon: Users2 }, { label: "Profile", to: "/profile", icon: UserCircle2 }, ] type SidebarProps = { isOpen: boolean onClose: () => void } export function Sidebar({ isOpen, onClose }: SidebarProps) { return ( <> {/* Mobile overlay */}
{/* Sidebar panel */} > ) }