import { useNavigate, useLocation } from "react-router"; import { motion } from "framer-motion"; export default function SidebarNav() { const navigate = useNavigate(); const location = useLocation(); const { pathname } = location; const navItems = [ { id: "chat", label: "Chat", path: "/", icon: ( ), }, { id: "skills", label: "Skills", path: "/skills", icon: ( ), }, { id: "keys", label: "API Keys", path: "/api-keys", icon: ( ), }, { id: "orchestrate", label: "Orchestrate", path: "/orchestration", icon: ( ), }, { id: "settings", label: "Settings", path: "/settings", icon: ( ), }, ]; return (
); }