--- import { Icon } from 'astro-icon/components'; import { Image } from 'astro:assets'; import { getDirectusImageURL } from '@/support/url'; interface Props { title: string; subTitle: string; url: string; single?: boolean; imgOne: any; imgOneAlt: any; imgTwo?: any; imgTwoAlt?: any; } const { title, subTitle, url, single, imgOne, imgOneAlt, imgTwo, imgTwoAlt } = Astro.props; ---

{title}

{subTitle}

Read More
{single ? (
{imgOneAlt}
) : (
{imgOneAlt} {imgTwoAlt}
)}