import { Link } from '@tanstack/react-router' import { Compass, FileText, Home, Trophy } from 'lucide-react' const PRIMARY = [ { to: '/', label: 'Weekend', icon: Home, exact: true }, { to: '/championship', label: 'Championship', icon: Trophy, exact: false }, { to: '/briefing', label: 'Briefing', icon: FileText, exact: false }, { to: '/explore', label: 'Explore', icon: Compass, exact: false }, ] as const export function Nav() { return ( <> ) }