import { NavLink } from "react-router-dom"; import { LayoutDashboard, Users, GitBranch, Settings, History, Moon, Sun, } from "lucide-react"; import { Button } from "@/components/ui/button"; import { Separator } from "@/components/ui/separator"; import { useConfigStore } from "@/stores/configStore"; import { cn } from "@/lib/utils"; const navItems = [ { to: "/", icon: LayoutDashboard, label: "Dashboard" }, { to: "/agents", icon: Users, label: "Agents" }, { to: "/workflow", icon: GitBranch, label: "Workflow" }, { to: "/history", icon: History, label: "History" }, { to: "/config", icon: Settings, label: "Settings" }, ]; export function Sidebar() { const { darkMode, toggleDarkMode } = useConfigStore(); return (
gMAS
); }