'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; const navLinks = [ { href: '/', label: 'Dashboard' }, { href: '/profile', label: 'Profile' }, { href: '/leagues', label: 'Leagues' }, { href: '/races', label: 'Races' }, ] as const; export function AlphaNav() { const pathname = usePathname(); return ( ); }