--- export interface Props { title: string; authors: string[]; description?: string; } import Layout from "./BaseLayout.astro"; import "reveal.js/dist/reveal.css"; import "reveal.js/plugin/highlight/monokai.css"; import "@theme"; const { title, authors, description } = Astro.props; --- {description && } {authors.map((author) => )}

{title}

{authors}