export default function CTABanner({ title, description, buttonHref, buttonText, buttonSecondaryHref, buttonSecondaryText }) { return (

{title}

{description}

{buttonText && buttonHref && (
{buttonText}
)} {buttonSecondaryText && buttonSecondaryHref && (
{buttonSecondaryText}
)}
); }