import { cn } from "@/lib/utils"; import { ArchiveIcon, HardDrive, KeySquare, LayoutDashboard, } from "lucide-react"; import { Menu } from "react-daisyui"; import { Link, useLocation } from "react-router-dom"; const pages = [ { icon: LayoutDashboard, title: "Dashboard", path: "/", exact: true }, { icon: HardDrive, title: "Cluster", path: "/cluster" }, { icon: ArchiveIcon, title: "Buckets", path: "/buckets" }, { icon: KeySquare, title: "Keys", path: "/keys" }, ]; const Sidebar = () => { const { pathname } = useLocation(); return ( ); }; export default Sidebar;