function CustomersView() {
  const { React } = window;
  const { useEffect } = React;

  useEffect(() => {
    document.title = 'Sekura — customers and early adopters';
  }, []);

  return (
    <React.Fragment>
      <section className="customers-hero">
        <div className="customers-hero-inner">
          <p className="customers-hero-eyebrow">customers</p>
          <h1 className="customers-hero-h1">
            security teams using sekura <em>today.</em>
          </h1>
          <p className="customers-hero-sub">
            Early adopters running autonomous penetration tests on real
            codebases — with proof-of-exploit for every finding.
          </p>
        </div>
      </section>
      <window.EarlyAdopters />
      <window.ProofArtifact />
    </React.Fragment>
  );
}

window.CustomersView = CustomersView;
