--- interface Props { title: string; image?: string; eyebrow?: string; constrain?: boolean; } const { title, image, eyebrow, constrain = false } = Astro.props; ---
{eyebrow ?

{eyebrow}

{title}

:

{title}

}