"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; function Icon({ name, className = "" }: { name: string; className?: string }) { return ( {name} ); } const NAV_ITEMS = [ { icon: "dashboard", label: "Dashboard", href: "/dashboard" }, { icon: "history", label: "History", href: "/history" }, { icon: "analytics", label: "Analytics", href: "/analytics" }, { icon: "settings", label: "Preferences", href: "/preferences" }, ]; export default function Sidebar() { const pathname = usePathname(); return ( ); }