--- import type { CollectionEntry, CollectionKey } from "astro:content"; interface Props { collectionName: CollectionKey; categoryName: string; posts: Array>; } const { collectionName, categoryName, posts } = Astro.props; ---

{categoryName}