--- import GoLinkPrimaryButton from '@components/buttons/GoLinkPrimaryButton.astro'; import GoLinkSecondaryButton from '@components/buttons/GoLinkSecondaryButton.astro'; import Image from '@components/ui/images/Image.astro'; interface Props { title: string; subTitle?: string; primaryBtn?: string; primaryBtnURL?: string; secondaryBtn?: string; secondaryBtnURL?: string; src?: any; alt?: string; rounded?: boolean; } const { title, subTitle, primaryBtn, primaryBtnURL, secondaryBtn, secondaryBtnURL, src, alt } = Astro.props; const roundedClasses = Astro.props.rounded ? "rounded-2xl" : null; ---

{subTitle && (

{subTitle}

)}
{primaryBtn && } {secondaryBtn && }