'use client'; import Image from 'next/image'; interface HeroBackgroundProps { imageSrc: string; imageAlt: string; } export const HeroBackground = ({ imageSrc, imageAlt }: HeroBackgroundProps) => { return (