--- interface Props { title: string; subtitle?: string; centered?: boolean; class?: string; } const { title, subtitle, centered = false, class: className = "" } = Astro.props; ---

{subtitle && (

{subtitle}

)}