function WhatWeDo({ lang = 'EN' }) { const T = { EN: { eyebrow: 'What we do', title: ['Tailored IT solutions that', 'actually', 'move the needle.'], intro: 'Enabling your businesses to thrive in a digital-first world — streamlining processes through automation, optimized IT infrastructure, and proactive system management to reduce downtime and improve productivity.', blocks: [ { label: 'Mission', body: 'To empower your businesses by delivering efficient, cost-effective, and high-impact IT solutions that drive measurable results.' }, { label: 'Vision', body: 'To be your trusted technology partner worldwide, enabling digital transformation through innovative, scalable, and reliable solutions.' }, { label: 'Global Operations', body: 'Headquartered in Germany with international delivery hubs serving clients across the USA, Europe, UAE, India, and Pakistan.' }, { label: 'Service Coverage & Delivery', body: 'Always-on global support model with dedicated Native-speaking escalation teams and data governance.' }, ], stats: [ { v: '24/7', l: 'Global support' }, { v: '4', l: 'Delivery regions' }, { v: '99.98%', l: 'Uptime delivered' }, { v: '3+', l: 'Years operating' }, ], }, DE: { eyebrow: 'Was wir tun', title: ['Ma\u00dfgeschneiderte IT-L\u00f6sungen, die', 'wirklich', 'etwas bewegen.'], intro: 'Wir helfen Unternehmen, in einer digital-first Welt erfolgreich zu sein \u2014 durch Automatisierung, optimierte IT-Infrastruktur und proaktives Systemmanagement reduzieren wir Ausfallzeiten und steigern die Produktivit\u00e4t.', blocks: [ { label: 'Mission', body: 'Ihre Unternehmen durch effiziente, kosteng\u00fcnstige und wirkungsvolle IT-L\u00f6sungen zu st\u00e4rken \u2014 mit messbaren Ergebnissen.' }, { label: 'Vision', body: 'Ihr vertrauensw\u00fcrdiger Technologiepartner weltweit zu sein – digitale Transformation durch innovative, skalierbare und zuverl\u00e4ssige L\u00f6sungen erm\u00f6glichen.' }, { label: 'Globaler Betrieb', body: 'Hauptsitz in Deutschland mit internationalen Delivery-Hubs f\u00fcr Kunden in den USA, Europa, den VAE, Indien und Pakistan.' }, { label: 'Service-Abdeckung & Lieferung', body: 'Always-on-Supportmodell mit dedizierten muttersprachlichen Eskalationsteams und Daten-Governance.' }, ], stats: [ { v: '24/7', l: 'Globaler Support' }, { v: '4', l: 'Delivery-Regionen' }, { v: '99.98%', l: 'Verf\u00fcgbarkeit' }, { v: '3+', l: 'Jahre am Markt' }, ], }, }; const t = T[lang] || T.EN; return (
{t.eyebrow}

{t.title[0]}{' '} {t.title[1]}{' '} {t.title[2]}

{t.blocks.map((b) => (
{b.label}
))}
{/* Stats strip */}
{t.stats.map((s) => (
{s.v}
{s.l}
))}
); } window.WhatWeDo = WhatWeDo;