/* Quick City IFM — expanded "Über uns" — story, stats, milestones (no map) */ function IfmAboutPage() { const { t } = window.useT ? window.useT() : { t: (k, f) => f }; // Story blocks (from QC_CONTENT.about.ifm.blocks) const blocks = (window.QC_CONTENT && window.QC_CONTENT.about && window.QC_CONTENT.about.ifm && window.QC_CONTENT.about.ifm.blocks) || []; // Stats — 6 metrics, IFM-relevant const stats = [ { num: '25+', label: t('ifmab.stat1', 'Jahre Erfahrung') }, { num: '150', label: t('ifmab.stat2', 'Mitarbeiter') }, { num: '350+', label: t('ifmab.stat3', 'Maschinen & Fahrzeuge') }, { num: '750+', label: t('ifmab.stat4', 'Aufträge / Jahr') }, { num: 'ISO', label: t('ifmab.stat5', '9001 & 14001 zertifiziert') }, { num: '100%', label: t('ifmab.stat6', 'Berlin & Umland') } ]; return ( {/* HERO */}
Quick City IFM {t('about.crumb', 'Über uns')}

seit 2001.')}} />

{t('ifmab.hero.lead', 'Seit über zwei Jahrzehnten kümmern wir uns um das, was Berlins Außenanlagen jeden Tag funktionieren lässt. Eigene Mannschaft, eigener Maschinenpark, eigene Werkstatt — und Verlässlichkeit als Grundprinzip.')}

{/* STATS BAND */}
{stats.map((s, i) => (
{s.label}
))}
{/* STORY */}
{t('ifmab.story.h', 'Was uns ausmacht')}

jeden Tag.')}} />

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

{t('ifmab.block' + (i+1) + '.h', b.h)}

))}
{/* CTA */}
{t('ifmab.cta.h', 'Lernen Sie uns kennen.')}

{t('ifmab.cta.title', 'Sagen Sie uns, was Sie brauchen.')}

{t('ifmab.cta.t', 'Vom Winterdienst-Vertrag über die neue Außenanlage bis zur Baumpflege — werfen Sie einen Blick auf unsere Projekte oder nehmen Sie direkt Kontakt mit uns auf.')}

); } Object.assign(window, { IfmAboutPage });