--- interface Props { label: string; title: string; highlight?: string; sub?: string; center?: boolean; } const { label, title, highlight, sub, center = true } = Astro.props; ---
{label}

{title}{highlight && {highlight}}

{sub &&

{sub}

}