// Strategic Focus Areas — six engagement fields, using the original "No factor" list layout.
function NoFactor() {
const { lang } = React.useContext(window.LangContext);
const { isMobile, isTablet } = window.useBreakpoint();
const [refH2, visH2] = window.useReveal();
const [refList, visList] = window.useReveal({ threshold: 0.06 });
const en = {
eyebrow: "05 · Strategic Deliverables",
h2: ["What gets", built.],
intro: "Five core deliverables that emerge from the three services. Depth depends on where you are.",
areas: [
{ title: "AI Readiness Assessment", body: "A structured assessment of organisational maturity: processes, data landscape, responsibilities, and realistic AI opportunities." },
{ title: "AI Strategy Roadmap", body: "A clear direction for AI adoption: vision & mission, priorities, sequence of steps, dependencies, risks, and decision paths." },
{ title: "Use Case Map", body: "A prioritised overview of relevant AI use cases, evaluated by value, effort, risk, and feasibility." },
{ title: "Pilot Blueprint", body: "A concrete plan for the first AI pilot: workflows, roles, interfaces, responsibilities, and implementation steps." },
{ title: "Governance & Quality Model", body: "Clear responsibilities, approvals, review processes, and escalation paths for reliable AI operations." },
],
};
const de = {
eyebrow: "05 · Strategische Einsatzfelder",
h2: ["Was dabei", entsteht.],
intro: "Fünf konkrete Ergebnisse aus den drei Leistungen, je nach Ausgangslage in unterschiedlicher Tiefe.",
areas: [
{ title: "AI Readiness Assessment", body: "Strukturierte Einschätzung der organisatorischen Reife: Prozesse, Datenlage, Zuständigkeiten und realistische KI-Möglichkeiten." },
{ title: "KI-Strategie-Roadmap", body: "Ein klares Zielbild für den Einsatz von KI: Vision & Mission, Prioritäten, Umsetzungsreihenfolge, Abhängigkeiten, Risiken und Entscheidungswege." },
{ title: "Use-Case-Landkarte", body: "Eine priorisierte Übersicht relevanter KI-Anwendungsfälle, bewertet nach Nutzen, Aufwand, Risiko und Umsetzbarkeit." },
{ title: "Pilot-Blueprint", body: "Ein konkreter Bauplan für den ersten KI-Piloten: Abläufe, Rollen, Schnittstellen, Governance und Umsetzungsschritte." },
{ title: "Governance- & Qualitätsmodell", body: "Klare Verantwortung, Freigaben, Prüfprozesse und Eskalationswege für einen geregelten KI-Betrieb." },
],
};
const t = lang === 'de' ? de : en;
const [expandedItems, setExpandedItems] = React.useState(new Set());
const toggleItem = (i) => setExpandedItems(prev => {
const next = new Set(prev);
next.has(i) ? next.delete(i) : next.add(i);
return next;
});
return (
{/* Ring blob — hidden on mobile only */}
{!isMobile && (
)}
05
{t.h2[0]}
{t.h2[1]}
{t.intro}
{t.areas.map((a, i) => (
- isMobile && toggleItem(i)}
style={{
padding: "32px 0",
borderTop: i === 0 ? "1px solid #2d2d38" : "none",
borderBottom: "1px solid #2d2d38",
display: "grid", gridTemplateColumns: "44px 1fr", gap: 24,
alignItems: "baseline",
cursor: isMobile ? "pointer" : "default",
}}>
—
{a.title}
{isMobile && (
+
)}
{(!isMobile || expandedItems.has(i)) && (
{a.body}
)}
))}
);
}
window.NoFactor = NoFactor;