"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; const NAV_ITEMS = [ { href: "/transactions", label: "Transactions", icon: "receipt" }, { href: "/statements", label: "Statements", icon: "file-text" }, { href: "/shared", label: "Shared", icon: "users" }, { href: "/budget", label: "Budget", icon: "bar-chart" }, { href: "/tags", label: "Tags", icon: "tag" }, { href: "/rules", label: "Rules", icon: "settings" }, ]; const ICONS: Record = { receipt: ( ), "file-text": ( ), users: ( ), "bar-chart": ( ), tag: ( ), settings: ( ), }; export function Sidebar() { const pathname = usePathname(); return ( ); }