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