const ITENS = [ { v: "dashboard", i: "🏠", t: "Dashboard" }, { v: "oportunidades", i: "💼", t: "Oportunidades" }, { v: "leads", i: "🌱", t: "Leads" }, { v: "tarefas", i: "✅", t: "Tarefas" }, { v: "satisfacao", i: "😊", t: "Satisfação" }, { v: "cancelamentos", i: "❌", t: "Cancelamentos" }, { v: "busca", i: "🔎", t: "Consulta" }, { v: "alertas", i: "🚨", t: "Alertas" }, { v: "tendencias", i: "📈", t: "Tendências" }, { v: "relatorio", i: "📄", t: "Relatório" }, { v: "config", i: "⚙️", t: "Configuração" }, ]; export default function Sidebar({ view, onNavigate, aberta }) { return ( ); } export const VIEW_TITULOS = Object.fromEntries(ITENS.map((it) => [it.v, it.t === "Alertas" ? "Alertas & riscos" : it.t]));