--- import { Icon } from 'astro-icon/components'; import { Image } from 'astro:assets'; import { getDirectusImageURL } from '@/support/url'; interface Props { title: string; subTitle: string; url: string; img?: string; imgAlt?: string; } const { title, subTitle, url, img, imgAlt } = Astro.props; ---
{img && (
{imgAlt}
)}

{title}

{subTitle}

Read More