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