import { BrowserRouter, Routes, Route, NavLink } from 'react-router-dom' import { LayoutDashboard, Leaf, Image, Play, Download, Settings, } from 'lucide-react' import { clsx } from 'clsx' import Dashboard from './pages/Dashboard' import Species from './pages/Species' import Images from './pages/Images' import Jobs from './pages/Jobs' import Export from './pages/Export' import SettingsPage from './pages/Settings' const navItems = [ { to: '/', icon: LayoutDashboard, label: 'Dashboard' }, { to: '/species', icon: Leaf, label: 'Species' }, { to: '/images', icon: Image, label: 'Images' }, { to: '/jobs', icon: Play, label: 'Jobs' }, { to: '/export', icon: Download, label: 'Export' }, { to: '/settings', icon: Settings, label: 'Settings' }, ] function Sidebar() { return ( ) } export default function App() { return ( } /> } /> } /> } /> } /> } /> ) }