// ROCA GOLF — Sidebar + Topbar (golf dark theme only) function Sidebar({ active = "dashboard", onNav, alertCount = 4 }) { const items = [ { group: "Operación", links: [ { id: "dashboard", label: "Dashboard", icon: Icon.dashboard }, { id: "reports", label: "Reportes", icon: Icon.reports }, { id: "oc", label: "Órdenes de compra", icon: Icon.oc }, { id: "alerts", label: "Alertas", icon: Icon.bell, badge: alertCount } ]}, { group: "Catálogos", links: [ { id: "catalog", label: "Insumos", icon: Icon.catalog }, { id: "vendors", label: "Proveedores", icon: Icon.vendors }, { id: "history", label: "Historial", icon: Icon.history } ]}, { group: "Sistema", links: [ { id: "settings", label: "Configuración", icon: Icon.settings } ]} ]; return ( ); } function Topbar({ crumbs = "Compras / Dashboard", title = "Panel general", periodLabel = "Q2 2026 · Abril", actions, onSearch }) { return (