--- import { slugifyStr } from "@/utils/slugify"; import type { CollectionEntry } from "astro:content"; import Datetime from "./Datetime.astro"; export interface Props { href?: string; frontmatter: CollectionEntry<"blog">["data"]; secHeading?: boolean; } const { href, frontmatter, secHeading = true } = Astro.props; const { title, pubDatetime, modDatetime, description } = frontmatter; const headerProps = { style: { viewTransitionName: slugifyStr(title) }, class: "text-lg font-medium decoration-dashed hover:underline", }; ---
{description}