--- import PrimaryCTA from '@components/ui/buttons/PrimaryCTA.astro'; import Image from '@components/ui/images/Image.astro'; interface Props { title: string; subTitle: string; btnExists?: boolean; btnTitle?: string; btnURL?: string; single?: boolean; imgOne?: any; imgOneAlt?: any; imgTwo?: any; imgTwoAlt?: any; } const { title, subTitle, btnExists, btnTitle, btnURL, single, imgOne, imgOneAlt, imgTwo, imgTwoAlt, } = Astro.props; ---

{title}

{subTitle}

{btnExists ? : null}
{ single ? (
{imgOneAlt}
) : (
{imgOneAlt} {imgTwoAlt}
) }