--- import type { CollectionEntry } from 'astro:content' import { getMonthName } from '$/utils' interface Props { post: CollectionEntry<'blog'>, asCard?: boolean } const { post: { data: post, slug }, asCard = false } = Astro.props ---
{post.description}