const Outcomes = () => { const kpis = [ { v: '70%', label: 'Reduction in manual work', sub: 'across approval, document, and reconciliation flows', color: '#E63329' }, { v: '14×', label: 'Faster decision cycles', sub: 'from days-to-report to minutes-to-action', color: '#14A04A' }, { v: '6 wk', label: 'Median time-to-value', sub: 'from kickoff to first automated outcome in production', color: '#1B7BD6' }, { v: '98.6%', label: 'Extraction accuracy', sub: 'on production document pipelines, human-in-loop on exceptions', color: '#F5C518' }, ]; // Mini chart data - cycle time before vs after const before = [86, 92, 78, 88, 90, 84, 81]; const after = [22, 18, 14, 12, 10, 9, 7]; const max = 100; return (
{/* KPI cards */}
{kpis.map((k, i) => (
Metric · {String(i+1).padStart(2,'0')}
{k.v}
{k.label}
{k.sub}
))}
{/* Cycle-time chart */}
Before / After

Cycle time, weekly

before aidd
{before.map((b, i) => (
w{i+1}
))}
Avg. process: invoice → posting
−87% in 7 weeks
{/* Quote strip */}

"Webever didn't deliver a tool — they delivered an operating loop. Our finance ops are now a function of one button, not five people."

VP Operations · Mid-market manufacturing
Reference customer
); }; window.Outcomes = Outcomes;