--- import type { CollectionEntry } from 'astro:content'; import RootLayout from '../layouts/RootLayout.astro'; import FormattedDate from '../components/FormattedDate.astro'; import NotchedBox from '../components/NotchedBox.astro'; import { Image } from 'astro:assets'; type Props = CollectionEntry<'blog'>['data']; const { title, description, pubDate, updatedDate, heroImage } = Astro.props; ---
{heroImage && }
{ updatedDate && (
Last updated on
) }

{title}