import React from 'react' import { useContent, useMeta } from '../hooks/useContent' import SpeakingAccordion from '../components/SpeakingAccordion' import SEOHead from '../components/SEOHead' export default function Speaking() { const { items: allTalks } = useContent('talks', { visibility: 'all', pageSize: 100 }) const { speaking } = useMeta() const sections = speaking?.sections || [] return (

Speaking

Keynotes, Workshops und Panels zu KI, Transformation und Leadership.

{/* Speaker Bio */} {speaking?.bio && (
Dr. André Knie

{speaking.bio}

{speaking.style && (
{speaking.style.map((s, i) => ( {s} ))}
)}
)}
) }