import { useTranslations } from 'next-intl'; import { getTranslations } from 'next-intl/server'; import { Metadata } from 'next'; import JsonLd from '@/components/JsonLd'; import { getBreadcrumbSchema, SITE_URL } from '@/lib/schema'; import { Section, Container, Heading, Badge, Button } from '@/components/ui'; import Image from 'next/image'; import Reveal from '@/components/Reveal'; interface TeamPageProps { params: { locale: string; }; } export async function generateMetadata({ params: { locale } }: TeamPageProps): Promise { const t = await getTranslations({ locale, namespace: 'Team' }); return { title: t('hero.subtitle'), description: t('hero.title'), alternates: { canonical: `/${locale}/team`, languages: { 'de': '/de/team', 'en': '/en/team', 'x-default': '/en/team', }, }, openGraph: { title: `${t('hero.subtitle')} | KLZ Cables`, description: t('hero.title'), url: `https://klz-cables.com/${locale}/team`, }, twitter: { card: 'summary_large_image', title: `${t('hero.subtitle')} | KLZ Cables`, description: t('hero.title'), }, }; } export default function TeamPage() { const t = useTranslations('Team'); return (
{/* Hero Section */}
KLZ Team
{t('hero.badge')}

{t('hero.subtitle')}

{t('hero.title')}

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

{t('michael.quote')}

{t('michael.description')}

{t('michael.name')}
{/* Legacy Section - Immersive Background */}
{t('legacy.subtitle')}
{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.name')}
{t('klaus.role')} {t('klaus.name')}

{t('klaus.quote')}

{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) => (
{t('gallery.title')}
))}
); }