--- import PrimaryCTA from '@components/ui/buttons/PrimaryCTA.astro'; interface Props { title: string; subTitle: string; btnExists?: boolean; btnTitle?: string; btnURL?: string; } const { title, subTitle, btnExists, btnTitle, btnURL } = Astro.props; ---

{title}

{subTitle}

{ btnExists ? (
) : null }