"use client"; import { BarChart3, Building2, History, LayoutGrid, Network, Users } from "lucide-react"; import Link from "next/link"; import { usePathname } from "next/navigation"; const NAV_ITEMS = [ { href: "/", label: "Übersicht", icon: LayoutGrid }, { href: "/employees", label: "Mitarbeiter:innen", icon: Users }, { href: "/orgchart", label: "Organigramm", icon: Network }, { href: "/positions", label: "Positionen & Bereiche", icon: Building2 }, { href: "/reports", label: "Berichte", icon: BarChart3 }, { href: "/audit", label: "Audit-Log", icon: History }, ] as const; export function Sidebar() { const pathname = usePathname(); return ( ); }