component ProductHero { props { eyebrow = "" title = "" description = "" align = "start" class = "" } view {
{#if eyebrow}

{eyebrow}

{/if} {#if title}

{title}

{/if} {#if description}

{description}

{/if}
} }