import React from 'react' import { useMeta } from '../hooks/useContent' import LogoMarquee from '../components/LogoMarquee' import TestimonialSlider from '../components/TestimonialSlider' import UpcomingEvents from '../components/UpcomingEvents' import StatsCube from '../components/StatsCube' import DotCloudIcon from '../components/DotCloudIcon' import PhotoBand from '../components/PhotoBand' import SEOHead from '../components/SEOHead' import './Home.css' const PHOTO_BAND_IMAGES = [ '/images/workshop-1.webp', '/images/keynote-1.webp', '/images/workshop-2.webp', '/images/panel-1.webp', '/images/workshop-3.webp', ] export default function Home() { const { profile, testimonials, logos } = useMeta() return (
{/* Hero */}
Dr. André Knie

{profile?.name || 'Dr. André Knie'}

{profile?.roles?.join(' · ')}

{profile?.summary}

Speaking anfragen Kontakt
{/* Stats Cube */} {/* Photo Band — full width, no text, just scrolling images */} {/* Positioning — Mein Ansatz */}

Mein Ansatz

Souveränität

{profile?.positioning?.sovereignty}

Sicher von KI profitieren

{profile?.positioning?.data_sovereignty}

Praxis

{profile?.positioning?.practical}

Mensch im Zentrum

KI ist kein Selbstzweck, sondern unterstützt Menschen.

{/* Audiences */} {profile?.audiences && (

Für wen ich arbeite

{profile.audiences.map((aud) => (

{aud.label}

{aud.description}

))}
)} {/* Logo Marquee — Kunden & Partner */} {/* Testimonials */} {/* Upcoming Events */}
) }