import { NavLink } from 'react-router-dom'; import { LayoutDashboard, List, BarChart3 } from 'lucide-react'; const navItems = [ { to: '/', label: 'Dashboard', icon: LayoutDashboard }, { to: '/scenarios', label: 'Scenarios', icon: List }, { to: '/compare', label: 'Compare', icon: BarChart3 }, ]; export function Sidebar() { return ( ); }