import React from 'react' import { useMeta } from '../hooks/useContent' import { ExternalLink, Globe } from 'lucide-react' import SpeakerCvRequest from '../components/SpeakerCvRequest' import SEOHead from '../components/SEOHead' export default function About() { const { profile, about } = useMeta() const links = about?.links || {} const stations = about?.stations || [] const certifications = about?.certifications || [] const personal = about?.personal || [] return (

Über mich

{/* Profile Card */}
Dr. André Knie

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

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

{profile?.summary}

{/* Links */}
{links.linkedin && ( LinkedIn )} {links.dhive && ( Data Hive Cassel )}
{/* Career Timeline */} {stations.length > 0 && ( <>

Stationen

{stations.map((entry, i) => (
{entry.period}
{entry.title} — {entry.org}
))}
)} {/* Certifications */} {certifications.length > 0 && ( <>

Zertifizierungen & Weiterbildungen

{certifications.map((cert, i) => ( {cert} ))}
)} {/* Personal */} {personal.length > 0 && ( <>

Engagement & Persönliches

{personal.map((para, i) => (

{para}

))}
)}
) }