--- import type { CollectionEntry } from "astro:content"; import { render } from "astro:content"; import Link from "@components/Link.astro"; interface Props { award: CollectionEntry<"awards">; } const { award } = Astro.props as Props; const { Content } = await render(award); ---