import { useTranslations } from 'next-intl'; import { Section, Container, Heading, Card, Badge, Button } from '@/components/ui'; import Image from 'next/image'; export default function TeamPage() { const t = useTranslations('Team'); return (
{/* Hero Section */}
KLZ Team
Our People

{t('hero.subtitle')}

{t('hero.title')}

{/* Michael Bodemer Section - Sticky Narrative Split Layout */}
Managing Director {t('michael.name')}

"{t('michael.quote')}"

{t('michael.description')}

{t('michael.name')}
{/* Legacy Section - Immersive Background */}
Legacy
{t('legacy.title')}

{t('legacy.p1')}

{t('legacy.p2')}

Expertise
Decades of Knowledge
Network
Global Partnerships
{/* Klaus Mintel Section - Reversed Split Layout */}
{t('klaus.name')}
Founder & Visionary {t('klaus.name')}

"{t('klaus.quote')}"

{t('klaus.description')}

{/* Manifesto Section - Modern Grid */}
{t('manifesto.title')}

Our core principles guide every decision we make and every cable we deliver.

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

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

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

))}
{/* Gallery Section - Premium Treatment */}
Life at KLZ
{[ '/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
))}
); }