---
interface Props { title: string; eyebrow?: string; description?: string; image?: string; alt?: string; }
const { title, eyebrow, description, image, alt = '' } = Astro.props;
---
{eyebrow &&
{eyebrow}
}
{title}
{description &&
{description}
}
Get Started
{image &&

}