import React from "react"; type SmallHeroProps = { title: string; subtitle?: string; backgroundImage?: string; // Optional background image }; const SmallHero = ({title, subtitle, backgroundImage}: SmallHeroProps) => { return (

{title}

{subtitle &&

{subtitle}

}
); }; export default SmallHero;