'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { PORTAL_TABS } from '@/lib/constants/portal-navigation'; /** * PortalNav — horizontal tab navigation bar for the Client Portal. * * Renders four tabs (Inicio, Analítica, Canciones, Documentos) with * active state determined by the current pathname. The active tab * receives accent border and text styling. */ export default function PortalNav() { const pathname = usePathname(); return ( ); }