--- import { render, type CollectionEntry } from "astro:content"; import Container from "./Container.astro"; type Props = { entry: CollectionEntry<"projects"> | CollectionEntry<"blog">; }; const { entry } = Astro.props; const { Content, headings } = await render(entry); ---