import { Link, useLocation } from 'react-router-dom'; export default function TopBar() { const { pathname } = useLocation(); const linkClass = (path: string) => `px-4 py-2 rounded text-sm font-medium transition-colors ${ pathname === path ? 'bg-slate-700 text-white' : 'text-slate-300 hover:bg-slate-700/50' }`; return (

DODGE

); }