component Hero { props { eyebrow = "" title = "Build something remarkable" highlight = "" description = "" align = "left" size = "default" color = "primary" variant = "default" primaryLabel = "" primaryHref = "" primaryIcon = "" secondaryLabel = "" secondaryHref = "" secondaryIcon = "" tertiaryLabel = "" tertiaryHref = "" badges = [] trustItems = [] maxWidth = "xl" class = "" } view {
{#if variant === "gradient"} {/if}
{#if eyebrow}
{eyebrow}
{/if}

{title} {#if highlight} {highlight} {/if}

{#if description}

{description}

{/if} {#if badges.length > 0}
{#each badges as badge} {/each}
{/if}
{#if trustItems.length > 0}
{#each trustItems as item} {item.label || item.title || item} {/each}
{/if}
} }