// Clients — list of B2B clients SOLUCERSA staffs. LIGHT. function ClientsScreen({ onNavigate }) { return (
Clientes

Clientes de SOLUCERSA

{DATA.CLIENTS.length} empresas activas · {DATA.CLIENTS.reduce((a, c) => a + c.openRoles, 0)} vacantes en curso · {DATA.CLIENTS.reduce((a, c) => a + c.candidatesInPipe, 0).toLocaleString()} candidatos en pipeline.

{DATA.CLIENTS.map((c) => { const reqs = DATA.REQUISITIONS.filter((r) => r.clientId === c.id); return (
{c.monogram}
{c.name}
{c.industry}
{c.city}, {c.country}
{c.sla}
Vacantes abiertas
{reqs.length === 0 ? (
Sin vacantes activas
) : reqs.slice(0, 3).map((r) => (
{r.title}
{r.openings}
))} {reqs.length > 3 &&
+{reqs.length - 3} más
}
} title="Email" /> } title="Portal cliente" />
); })}
); } function ClientStat({ label, value }) { return (
{label}
{value}
); } window.ClientsScreen = ClientsScreen;