import Link from "next/link" import { Cog, LogOut, Gauge } from "lucide-react" import { Flex, Card } from "@radix-ui/themes" import { usePathname } from "next/navigation" const Sidebar = () => { const pathname = usePathname() const navItems = [ { href: "/account/dashboard", icon: Gauge, label: "Dashboard" }, { href: "/account/settings", icon: Cog, label: "Settings" }, { href: "/account/logout", icon: LogOut, label: "Logout" }, ] return ( {navItems.map((item) => ( {item.label} ))} ) } export default Sidebar