// Bausteine — section 06, modular add-ons. Individual expanding cards in a grid. function AddOnsPreview() { const { lang } = React.useContext(window.LangContext); const { isMobile, isTablet } = window.useBreakpoint(); const [refH2, visH2] = window.useReveal(); const [refGrid, visGrid] = window.useReveal({ threshold: 0.06 }); const [expanded, setExpanded] = React.useState(new Set()); const toggle = (i) => setExpanded(prev => { const next = new Set(prev); next.has(i) ? next.delete(i) : next.add(i); return next; }); const de = { eyebrow: "06 · Ergänzende Bausteine", h2line1: "Ergänzende", h2line2: "Bausteine.", intro: "Ergänzend zu den drei Leistungen — einzelne Themen als Workshop, Einzelmodul oder begleitende Unterstützung.", items: [ { title: "Fachbereichs-Workshops", body: "Auf die tatsächlichen Aufgaben, Rollen und Bedürfnisse eines bestimmten Teams zugeschnitten — mit Ergebnissen, die direkt umsetzbar sind." }, { title: "Governance & Qualitätssicherung", body: "Aufbau kontinuierlicher Prüf-, Freigabe- und Verantwortungsstrukturen, damit KI-Systeme dauerhaft kontrolliert und verbessert werden." }, { title: "Workflow- & Prozessdesign", body: "Entwicklung konkreter KI-gestützter Abläufe mit klaren Übergaben, Rollen, Prüfpunkten und Verantwortlichkeiten." }, { title: "System- & Schnittstellenlogik", body: "Strukturierung von Datenflüssen, eingesetzten Tools, Schnittstellen und technischen Anforderungen, damit Umsetzung planbar wird." }, { title: "Enablement & Übergabe", body: "Befähigung der beteiligten Teams, neue KI-Workflows sicher zu nutzen, Feedback zu geben und Verantwortung im laufenden Betrieb zu übernehmen." }, ], }; const en = { eyebrow: "06 · Modular Add-ons", h2line1: "Modular", h2line2: "Add-ons.", intro: "Supplementary to the three services — individual topics as a workshop, standalone module, or ongoing support.", items: [ { title: "Department Workshops", body: "Built around the actual tasks, roles, and needs of a specific team — with outcomes that translate directly into practice." }, { title: "Governance & Quality Assurance", body: "Building continuous review, approval, and accountability structures so AI systems are controlled and improved over time." }, { title: "Workflow & Process Design", body: "Developing concrete AI-supported workflows with clear handoffs, roles, checkpoints, and responsibilities." }, { title: "System & Interface Logic", body: "Structuring data flows, the tools in use, interfaces, and technical requirements so implementation becomes plannable." }, { title: "Enablement & Handover", body: "Equipping teams to use new AI workflows confidently, provide feedback, and own operations going forward." }, ], }; const t = lang === 'de' ? de : en; return (
06
{/* Left: eyebrow + heading + intro */}
{t.eyebrow}

{t.h2line1}
{t.h2line2}

{t.intro}

{/* Right: 2-column card grid */}
{t.items.map((item, i) => { const isOpen = expanded.has(i); return (
toggle(i)} style={{ background: "rgba(255,255,255,0.05)", border: "1px solid #2d2d38", borderRadius: 10, cursor: "pointer", overflow: "hidden", }}> {/* Card title row — fixed minHeight so all cards collapse to the same size */}
{item.title} +
{/* Separator + body — expands on click */}

{item.body}

); })}
); } window.AddOnsPreview = AddOnsPreview;