"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { LayoutDashboard, Globe, Layers, BarChart3, Settings, LogOut, KeyRound, History } from "lucide-react"; import { Logo } from "./Logo"; import { cn } from "@/lib/utils"; const NAV = [ { href: "/dashboard", label: "Dashboard", icon: LayoutDashboard }, { href: "/domains", label: "Domains", icon: Globe }, { href: "/groups", label: "Gruppen", icon: Layers }, { href: "/analytics", label: "Analytics", icon: BarChart3 }, { href: "/audit", label: "Audit-Log", icon: History }, { href: "/settings", label: "Einstellungen", icon: Settings }, { href: "/settings/api-tokens", label: "API-Tokens", icon: KeyRound }, ]; export function Sidebar({ user }: { user: { email: string } }) { const pathname = usePathname(); return ( ); }