--- import type { CollectionEntry } from "astro:content"; import FormattedDate from "../components/FormattedDate.astro"; import BaseLayout from "./BaseLayout.astro"; import { Picture } from "astro:assets"; type Props = CollectionEntry<"blog">["data"] & { readingTime: number; }; const { title, description, pubDate, updatedDate, heroImage, readingTime } = Astro.props; ---
{ heroImage && (
) }
{ updatedDate && (
Last updated on
) }

{title}

{readingTime} min read