import { For } from "solid-js" import { Icon, Link, Logo, Tooltip } from "@/ui" import { useLocation } from "@solidjs/router" const navigation = [ { name: "Sessions", href: "/sessions", icon: "dashboard" as const }, { name: "Commands", href: "/commands", icon: "slash" as const }, { name: "Agents", href: "/agents", icon: "bolt" as const }, { name: "Providers", href: "/providers", icon: "cloud" as const }, { name: "Tools (MCP)", href: "/tools", icon: "hammer" as const }, { name: "LSP", href: "/lsp", icon: "code" as const }, { name: "Settings", href: "/settings", icon: "settings" as const }, ] export default function SidebarNav() { const location = useLocation() return ( ) }