import { NavLink } from 'react-router-dom' import { Home, Crosshair, Shield, TrendingUp, User } from 'lucide-react' const navItems = [ { to: '/', icon: Home, label: 'Accueil' }, { to: '/session/new', icon: Crosshair, label: 'Séance' }, { to: '/arsenal', icon: Shield, label: 'Arsenal' }, { to: '/progress', icon: TrendingUp, label: 'Progression'}, { to: '/profile', icon: User, label: 'Profil' }, ] export default function BottomNav() { return ( ) }