--- import General from "@layouts/General.astro"; import Time from "@components/Time.tsx"; import { type CollectionEntry } from "astro:content"; interface Props { post: CollectionEntry<"blog">; } const { post } = Astro.props; const { title, pubDate, tags } = post.data; const tagCount = tags.length; ---

{title}