--- import { Image } from "astro:assets"; import { type ImageMetadata } from "astro"; const images = import.meta.glob<{ default: ImageMetadata }>( "/src/assets/credits/*.{jpeg,jpg,png,gif,webp}" ); interface Props { image?: string; name: string; link: string; } const { image, name, link } = Astro.props; --- {image && {name}}

{name}