"use client"; import { useTranslations } from 'next-intl'; import { motion } from 'framer-motion'; import { ChevronDown, MapPin } from 'lucide-react'; export default function Hero() { const t = useTranslations('Hero'); const openWhatsApp = () => { const phone = process.env.NEXT_PUBLIC_WHATSAPP_NUMBER || '905000000000'; window.open(`https://wa.me/${phone}`, '_blank'); }; return (
{/* ── Ambient gradient blobs ───────────────────── */}
{/* Grain overlay */}
{/* ── Content ──────────────────────────────────── */}
{/* Location */} Akyaka  ·  Gökova Körfezi {/* Brand name — static gradient, no shimmer */} KOZMOS {/* Thin divider */} {/* Subtitle */} Beach & More {/* Tagline */} {t('tagline')} {/* CTAs */} {t('cta_location')}
{/* ── Wave divider ─────────────────────────────── */}
{/* Scroll cue */}
); }