--- import type { CollectionEntry } from "astro:content"; import { Icon } from "astro-icon/components"; export interface Props { post: CollectionEntry<"posts">; } const { post } = Astro.props; const { title, description: blurb, pubDate } = post.data; const { slug } = post; ---