import Link from "next/link"; import HeroVideo from "@/components/HeroVideo"; interface HeroSectionProps { heroData: { location: string; welcome: string; title: string; subtitle: string; exploreActivities: string; scroll: string; }; lang: string; } export default function HeroSection({ heroData, lang }: HeroSectionProps) { return (
{heroData.location}
{heroData.welcome}

{heroData.title}

{heroData.subtitle}

{heroData.exploreActivities}
{/* Scroll indicator */}
{heroData.scroll}
); }