'use client'; import { Link } from '@/i18n/routing'; import { yachts } from '../data/yachts'; import YachtCard from '../components/YachtCard'; import { motion } from 'framer-motion'; import { use } from 'react'; interface PageProps { params: Promise<{ locale: string }>; } export default function Home({ params }: PageProps) { const { locale: _locale } = use(params); const t = useTranslations('Home'); const fadeInUp = { hidden: { opacity: 0, y: 40 }, visible: { opacity: 1, y: 0, transition: { duration: 0.8, ease: "easeOut" } } }; return ( <>
{/* YouTube Video Background */} {/* Elegant Overlay */}
{/* Text overlays removed for cinematic look */}
{/* Fiziksel Boşluk Ayırıcı - Üst */}
{/* Decorative Background Element */} 1980 {t('established')}

{t('title_main')}
{t('title_italic')}

{t('description')}

{/* Fiziksel Boşluk Ayırıcı - Alt */}
{/* Fleet Section */}
{/* Section Header */} Our Selection

{t('featured_fleet')} {t('featured_fleet_italic')}

{/* Kesin Boşluk Ayırıcı */}
{/* Cards Grid (3 on top, 2 centered on bottom) */} {yachts.map((yacht) => ( ))}
{/* Ekstra Alt Boşluk */}
); }