import { useTranslations } from 'next-intl';
import { Section, Container, Heading, Badge, Button } from '@/components/ui';
import Image from 'next/image';
import Reveal from '@/components/Reveal';
export default function TeamPage() {
const t = useTranslations('Team');
return (
{/* Hero Section */}
{t('hero.badge')}
{t('hero.subtitle')}
{t('hero.title')}
{/* Michael Bodemer Section - Sticky Narrative Split Layout */}
{t('michael.role')}
{t('michael.name')}
{t('michael.description')}
{/* Legacy Section - Immersive Background */}
{t('legacy.title')}
{t('legacy.p1')}
{t('legacy.p2')}
{t('legacy.expertise')}
{t('legacy.expertiseDesc')}
{t('legacy.network')}
{t('legacy.networkDesc')}
{/* Klaus Mintel Section - Reversed Split Layout */}
{t('klaus.role')}
{t('klaus.name')}
{t('klaus.description')}
{/* Manifesto Section - Modern Grid */}
{t('manifesto.title')}
{t('manifesto.tagline')}
{/* Mobile-only progress indicator */}
{[0, 1, 2, 3, 4, 5].map((i) => (
))}
{[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 */}
{t('gallery.title')}
{[
'/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) => (
))}
);
}