"use client"; import { useTranslations } from "next-intl"; import { motion } from "framer-motion"; import { mockData } from "@/lib/mock-data"; import Link from "next/link"; import Image from "next/image"; export function Hero() { const t = useTranslations("hero"); return ( <>
{/* Background Image - Using Next.js Image for optimization */}
Kordon Apart - Fethiye Marina manzarası {/* Gradient Overlay */}
{/* Hero Content */}
{t("subtitle")}

{t("title")}

{t("desc")}

{t("explore")} {t("virtualTour")}
{/* Search Bar Utility (Floating over Hero bottom) */}
); }