// Sidebar.jsx function Sidebar({ active, onNav }) { const sections = [ { label: 'Resumen', items: [ { id: 'overview', label: 'Vista general', icon: 'layout-dashboard' }, ] }, { label: 'Análisis', items: [ { id: 'volume', label: 'Volumen diario', icon: 'bar-chart-2' }, { id: 'topics', label: 'Temas frecuentes', icon: 'tag' }, { id: 'timing', label: 'Tiempos de respuesta',icon: 'clock' }, { id: 'heatmap', label: 'Horarios y días', icon: 'calendar' }, { id: 'geo', label: 'Geografía', icon: 'map-pin' }, ] }, { label: 'Operaciones', items: [ { id: 'agents', label: 'Agentes', icon: 'users' }, { id: 'bot', label: 'Bot vs. humano', icon: 'bot' }, { id: 'menu', label: 'Menú y consultas', icon: 'list' }, ] }, { label: 'Insights', items: [ { id: 'insights', label: 'Alertas y mejoras', icon: 'sparkles', badge: 4 }, ] }, ]; return ( ); } window.Sidebar = Sidebar;