import { NavLink } from "react-router-dom"; import { cn } from "../lib/utils"; const links = [ { to: "/", label: "Dashboard" }, { to: "/agents", label: "Agents" }, { to: "/projects", label: "Projects" }, { to: "/issues", label: "Issues" }, { to: "/goals", label: "Goals" }, ]; export function Sidebar() { return ( ); }