import { useTranslations } from 'next-intl'; import { Section, Container } from '@/components/ui'; import Image from 'next/image'; export default function TeamPage() { const t = useTranslations('Team'); return (
{/* Hero Section */}
KLZ Team
{t('hero.title')}

{t('hero.subtitle')}

{/* Michael Bodemer Section */}

{t('michael.name')}

{t('michael.quote')}

{t('michael.description')}

{t('michael.linkedin')}
{t('michael.name')}
{/* Legacy Section */}
Legacy

{t('legacy.title')}

{t('legacy.p1')}

{t('legacy.p2')}

{/* Klaus Mintel Section */}
{t('klaus.name')}

{t('klaus.name')}

{t('klaus.quote')}

{t('klaus.description')}

{t('klaus.linkedin')}
{/* Manifesto Section */}

{t('manifesto.title')}

{[0, 1, 2, 3, 4, 5].map((idx) => (
0{idx + 1}

{t(`manifesto.items.${idx}.title`)}

{t(`manifesto.items.${idx}.description`)}

))}
{/* Gallery Section */}
{[ '/uploads/2024/12/DSC07539-Large-600x400.webp', '/uploads/2024/12/DSC07460-Large-600x400.webp', '/uploads/2024/12/DSC07469-Large-600x400.webp', '/uploads/2024/12/DSC07433-Large-600x400.webp', '/uploads/2024/12/DSC07387-Large-600x400.webp' ].map((src, idx) => (
Team Gallery
))}
); }