import { getCmsImageUrl } from '@/utils/image'; import Link from 'next/link'; interface HeroSectionProps { data: { title: string; subtitle: string; description: string; primaryButton: { label: string; href: string; }; secondaryButton: { label: string; href: string; }; backgroundImage: string; videoUrl: string; }; } const HeroSection = ({ data }: HeroSectionProps) => { return (
img
img
img
img
03 05
{data.subtitle}

{data.title}

{data.description}

{data.primaryButton.label} {data.secondaryButton.label}
img
img
); }; export default HeroSection;