--- import type { CollectionEntry } from 'astro:content'; import BaseLayout from '../layouts/BaseLayout.astro'; import FormattedDate from '../components/FormattedDate.astro'; type Props = CollectionEntry<'blog'>['data']; const { title, description, pubDate } = Astro.props; ---

{title}