function ScanBand() {
  const { React } = window;
  return (
    <section className="scan-band">
      <div className="scan-band-inner">
        <p className="scan-band-text">
          paste a repo. get proof.
        </p>
        <div className="scan-band-actions">
          <a href="/#scan" className="cta cta--primary">
            scan your repo <span className="cta-arrow">→</span>
          </a>
          <a href="/pricing/" className="cta cta--ghost">
            see pricing
          </a>
        </div>
      </div>
    </section>
  );
}

window.ScanBand = ScanBand;
