--- 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; img: any; imgAlt: any; } const { title, subTitle, btnExists, btnTitle, btnURL, img, imgAlt } = Astro.props; ---
{imgAlt}

{title}

{subTitle}

{btnExists ? : null}