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 */}
Our People
{t('hero.subtitle')}
{t('hero.title')}
{/* Michael Bodemer Section - Sticky Narrative Split Layout */}
Managing Director
{t('michael.name')}
{t('michael.description')}
{/* Legacy Section - Immersive Background */}
{t('legacy.title')}
{t('legacy.p1')}
{t('legacy.p2')}
{[
{ label: 'Founded', value: '1998' },
{ label: 'Global Reach', value: '45+' },
{ label: 'Team Members', value: '120+' },
{ label: 'Innovation Awards', value: '12' },
].map((stat, i) => (
{stat.value}
{stat.label}
))}
{/* Klaus Mintel Section - Reversed Split Layout */}
Founder & Visionary
{t('klaus.name')}
{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) => (
))}
);
}