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

{title}

{subTitle}

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