--- import { Icon } from 'astro-icon/components'; import Image from '@components/ui/images/Image.astro'; import { getDirectusImageURL } from '@lib/directusFunctions'; 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; ---