--- interface Props { title: string; subtitle?: string; } const { title, subtitle } = Astro.props; ---

{title}

{ subtitle && (

{subtitle}

) }