--- export interface Props { title: string; authors: string[]; description?: string; } import Layout from "./BaseLayout.astro"; import "@themes/hnrq.scss"; const { title, authors, description } = Astro.props; --- {description && } {authors.map((author) => )}

{title}

{authors}