component ContactSalesBanner { props { class: string = "" eyebrow = "Enterprise identity" title = "Ready to secure your next application?" description = "" primaryLabel = "Contact sales" primaryHref = "/contact" secondaryLabel = "Start free" secondaryHref = "/sign-up" iconClass = "icon-[lucide--messages-square]" centered = false compact = false points = [] trustPoints = [] } view {
{eyebrow}

{title}

{description}

{#each points.slice(0, 4) as point}
{point}
{/each}
{#each trustPoints.slice(0, 4) as trustPoint} {trustPoint.label} {/each}
} }