/* global React, Container, Section, SectionIdx, useLang, t */ function Services() { useLang(); const items = t('services.items'); return (

{t('services.title')}

{t('services.lead')}

{items.map((s, i) => (
— {String(i + 1).padStart(2, '0')}

{s.title} {s.en}

{s.desc}

{s.spec.map(([k, v], j) => (
{k} {v}
))}
))}
); } function Cases() { useLang(); const items = t('cases.items'); return (

{t('cases.title')}

{t('cases.lead')}

{items.map((c, i) => (
{c.industry} {c.period}

{c.title}

{c.desc}

{c.numbers.map(([k, v], j) => (
{k} {v}
))}
))}
); } window.Services = Services; window.Cases = Cases;