"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { House, Search, Settings, Sparkles, FolderKanban, ShieldCheck } from "lucide-react"; import { PRODUCT_NAME } from "@/lib/product-config"; const navItems = [ { href: "/dashboard", label: "Dashboard", icon: House }, { href: "/workspaces", label: "Workspaces", icon: FolderKanban }, { href: "/reviews", label: "Reviews", icon: ShieldCheck }, { href: "/search", label: "Search", icon: Search }, { href: "/settings", label: "Settings", icon: Settings }, ]; export function Sidebar() { const pathname = usePathname() ?? ""; return ( ); }