import { NavLink } from 'react-router-dom'; import { useUserStore } from '../../stores/userStore'; const navItems = [ { to: '/', label: 'Übungen', icon: ( ), }, { to: '/sets', label: 'Sets', icon: ( ), }, { to: '/training', label: 'Training', icon: ( ), }, { to: '/history', label: 'Historie', icon: ( ), }, { to: '/settings', label: 'Einstellungen', icon: ( ), }, ]; /** Mobile Bottom-Navigation mit Links zu allen Hauptseiten. */ export function BottomNav() { return ( ); } /** Desktop-Seitenleiste mit Navigation und aktivem Nutzer-Indikator. */ export function Sidebar() { const { activeUser } = useUserStore(); return ( ); }