--- import type { CollectionEntry } from "astro:content"; import { slugifyStr } from "@/utils/slugify"; import { getPath } from "@/utils/getPath"; import Datetime from "./Datetime.astro"; type Props = { variant?: "h2" | "h3"; } & CollectionEntry<"blog" | "events" | "workshops" | "news" | "technical">; const { variant: Heading = "h2", id, data, filePath } = Astro.props; const { title, description, ...props } = data; ---
{description}