--- import type { CollectionEntry } from "astro:content"; interface Props extends CollectionEntry<"blog"> {} const { id, data } = Astro.props; const { title, description, dateCreated, lang } = data; const href = `/blog/read/${id}`; --- {title} {description}
{description}