--- import GoLinkPrimaryButton from '@components/buttons/GoLinkPrimaryButton.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}