--- import Author from './Author.astro'; import GithubStarButton from './GithubStarButton.astro'; export interface Props { title: string; author?: string; publishDate: string; heroImage: string; } const { title, author, publishDate, heroImage } = Astro.props; ---
{heroImage && }

{publishDate}

{title}

{author && }