import { Link, useLocation } from "@tanstack/react-router"; import { Radar, AlertTriangle, FileBarChart, GraduationCap, Scale, GitBranch, Car } from "lucide-react"; import { cn } from "@/lib/utils"; const nav = [ { to: "/dashboard", label: "Incident Bot", icon: AlertTriangle }, { to: "/dashboard/branch-debug", label: "Branch Debug Bot", icon: GitBranch }, { to: "/dashboard/forensic", label: "Forensics Bot", icon: Car }, { to: "/dashboard/reports", label: "Reports Bot", icon: FileBarChart }, { to: "/dashboard/coaching", label: "Coaching Bot", icon: GraduationCap }, { to: "/dashboard/compliance", label: "Compliance Bot", icon: Scale }, ] as const; export function Sidebar() { const loc = useLocation(); return ( ); }