{collection.data.title}
{
collection.data.collection ? (
• Collection
) : (
)
}
--- import { Image } from "astro:assets"; import FormattedDate from "@components/FormattedDate.astro"; type Props = { collection: any; }; const { collection } = Astro.props; ---