--- import { Icon } from 'astro-icon/components'; import { Image } from 'astro:assets'; import type { Post } from '@lib/directusTypes'; import { formatDate } from '@support/time'; import { getDirectusImageURL } from '@/support/url'; interface Props { post: Post; } const { post } = Astro.props; ---