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