--- import type { CollectionEntry } from "astro:content"; import AlbumCard from "./AlbumCard.astro"; type Props = { albums: CollectionEntry<"albums">[]; }; const { albums } = Astro.props; --- {albums.map((album) => )}