// Settings — minimal placeholder with SOFIA MCP config sections. function SettingsScreen() { const sections = [ { title: 'Organización', kicker: 'SOLUCERSA · cuenta corporativa', items: [ { label: 'Plan', value: 'Enterprise · 14 seats' }, { label: 'Workspace', value: 'SOLUCERSA · HR Operations' }, { label: 'Región de datos', value: 'us-east-1 (replicación a sa-east-1)' }, { label: 'SLA', value: '99.95% uptime · soporte 24/7' }, ], }, { title: 'SOFIA MCP', kicker: 'Producto y conectores', items: [ { label: 'Modelo de match', value: 'sofia-match v3.2 · last retrain 2026-05-13' }, { label: 'SOFIA Call', value: 'Activo · 142 llamadas / semana', tone: 'emerald' }, { label: 'SOFIA Chat', value: 'Activo · WhatsApp Business API · 3 números', tone: 'emerald' }, { label: 'Portal público', value: 'jobs.solucersa.com (custom domain)' }, ], }, { title: 'Seguridad', kicker: 'Cumplimiento y acceso', items: [ { label: 'SSO', value: 'Microsoft Entra ID (Azure AD) · activo', tone: 'emerald' }, { label: 'MFA', value: 'Obligatorio para todos los operadores', tone: 'emerald' }, { label: 'Audit log', value: 'Retención 24 meses · export S3 disponible' }, { label: 'Encriptación', value: 'AES-256 en reposo · TLS 1.3 en tránsito' }, ], }, ]; return (
Configuración

Ajustes de la cuenta

Producto: SOFIA MCP · Operador: SOLUCERSA · Plan Enterprise.

{sections.map((s) => (
{s.kicker}

{s.title}

{s.items.map((it) => (
{it.label}
{it.tone === 'emerald' && } {it.value}
))}
))} {/* Team */}
Equipo

Operadores activos

{[ { name: 'Marisol Pineda', role: 'Senior Operator · Lead', color: 'from-indigo-500 to-violet-400' }, { name: 'Carlos Reyes', role: 'Operator · Cobranzas', color: 'from-emerald-500 to-cyan-400' }, { name: 'Lucía Aguilar', role: 'Operator · Ventas', color: 'from-rose-500 to-orange-400' }, { name: 'Rodrigo Mejía', role: 'Operator · BPO US', color: 'from-amber-500 to-pink-400' }, { name: 'Daniela Cruz', role: 'Coordinator · Quality', color: 'from-sky-500 to-indigo-400' }, { name: 'Esteban López', role: 'Operator · Banca', color: 'from-violet-500 to-fuchsia-400' }, ].map((p) => (
{p.name}
{p.role}
} />
))}
); } window.SettingsScreen = SettingsScreen;