--- /** * GuaranteeBand Component * * Risk-reversal band that sits BETWEEN the PricingTimelineBand and the * InlineLeadForm on the homepage. Its single job is to remove last-mile * objections ("how do I know this won't blow up in my face?") right before * the visitor fills in the lead form below. * * Layout: * - 3-up icon + claim row on md+ * - Items stack vertically (1 column) on mobile (). Kept inline so the * component has no extra HTTP requests and the icons can ride along with * the document's currentColor — no FOUC. */ icon: string; } const claims: ClaimEntry[] = [ { title: '30-day satisfaction guarantee', body: 'Not happy in the first 30 days post-launch? We rework it on us or refund the engagement fee.', // Shield-check icon icon: '', }, { title: 'No long-term contracts', body: 'Month-to-month after delivery. Pause, extend, or wind down — you stay in control of the engagement.', // Document-minus icon icon: '', }, { title: 'Fixed-price quotes', body: 'Scope-locked proposals with a clear deliverable and a clear number — no surprise change-orders.', // Currency / receipt icon icon: '', }, ]; ---

Our guarantees

    {claims.map((claim, index) => (
  • {claim.title}

    {claim.body}

  • ))}