import { NavLink } from "react-router-dom"; import { CreditCard, FolderTree, Import, LayoutDashboard, Settings, Wallet, } from "lucide-react"; import { cn } from "@/lib/utils"; const links = [ { to: "/", label: "Übersicht", icon: LayoutDashboard }, { to: "/transaktionen", label: "Transaktionen", icon: Wallet }, { to: "/kategorien", label: "Kategorien", icon: FolderTree }, { to: "/kredite", label: "Kredite", icon: CreditCard }, { to: "/import", label: "CSV & comdirect", icon: Import }, { to: "/einstellungen", label: "Einstellungen", icon: Settings }, ]; export function Sidebar({ onNavigate }: { onNavigate?: () => void }) { return ( ); }