"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { LayoutDashboard, FileText, Users, Tags, Heart, Settings, Landmark, } from "lucide-react"; import { cn } from "@/lib/utils"; import { ThemeToggle } from "./ThemeToggle"; const NAV = [ { href: "/", label: "Dashboard", icon: LayoutDashboard }, { href: "/bills", label: "Bills", icon: FileText }, { href: "/members", label: "Members", icon: Users }, { href: "/topics", label: "Topics", icon: Tags }, { href: "/following", label: "Following", icon: Heart }, { href: "/settings", label: "Settings", icon: Settings }, ]; export function Sidebar() { const pathname = usePathname(); return ( ); }