interface DownloadSectionProps { title: string; subtitle: string; buttonText: string; href: string; backgroundImage: string; } export default function DownloadSection({ title, subtitle, buttonText, href, backgroundImage, }: DownloadSectionProps) { return (
{/* Overlay */}

{title}

{subtitle}

{buttonText}
); }