"use client"; import { useTranslations } from 'next-intl'; import { motion } from 'framer-motion'; import Image from 'next/image'; import { Sun } from 'lucide-react'; export default function Beach() { const t = useTranslations('Beach'); const openWhatsApp = () => { const phone = process.env.NEXT_PUBLIC_WHATSAPP_NUMBER || '905000000000'; window.open( `https://wa.me/${phone}?text=Merhaba,%20şezlong%20rezervasyonu%20yaptırmak%20istiyorum.`, '_blank', ); }; const stats = [ { value: '∞', label: 'Şezlong' }, { value: '7/7', label: 'Açık' }, { value: 'VIP', label: 'Cabana' }, ]; return (
{/* Left masonry photos */}
Plaj
Şezlong
Deniz
Koy
{/* Right content */}
Beach Club

{t('title')}

{t('description')}

{/* Stats */}
{stats.map(({ value, label }) => (
{value}
{label}
))}
{/* Info & CTA */}

{t('reservation_info')}

{/* Wave → midnight */}
); }