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

{title}