--- import { Image } from "astro:assets"; import type { CollectionEntry } from "astro:content"; interface Props { images: CollectionEntry<"projects">[]; interval?: number; } const { interval = 3000, images } = Astro.props; ---
{ images.map((image: any, index: number) => (
{`Slide

{image.data.title}

)) }