// LogoStrip.jsx — customer marquee in trust band.
function TrustBand() {
  return (
    <section className="zg-trust-band" aria-labelledby="zg-trust-customers-label">
      <div className="zg-container">
        <ClientLogoMarquee
          label="Some of our customers leveraging AI"
          labelId="zg-trust-customers-label"
          layout="inline"
        />
      </div>
    </section>
  );
}

window.TrustBand = TrustBand;
