--- import { type CollectionEntry } from "astro:content"; import dayjs from "dayjs"; type Props = { readonly post: CollectionEntry<"blog">; }; const { post } = Astro.props; ---

{post.data.title}

{post.data.description}

Read More