import { cn, ucfirst } from "@/lib/utils"; import { ArchiveIcon, HardDrive, KeySquare, LayoutDashboard, Palette, } from "lucide-react"; import { Dropdown, Menu } from "react-daisyui"; import { Link, useLocation } from "react-router-dom"; import Button from "../ui/button"; import { themes } from "@/app/themes"; import appStore from "@/stores/app-store"; import garageLogo from "@/assets/garage-logo.svg"; 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;