'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { LayoutDashboard, Anchor, FileText, Receipt } from 'lucide-react'; import { cn } from '@/lib/utils'; const navItems = [ { label: 'Dashboard', href: '/portal/dashboard', icon: LayoutDashboard }, { label: 'Interests', href: '/portal/interests', icon: Anchor }, { label: 'Documents', href: '/portal/documents', icon: FileText }, { label: 'Invoices', href: '/portal/invoices', icon: Receipt }, ]; export function PortalNav() { const pathname = usePathname(); return ( ); }