/* global React */
function LogoBar() {
  const logos = [
    'LINEAR', 'VERCEL', 'RAMP', 'MERCURY', 'NOTION', 'RETOOL', 'CURSOR'
  ];
  return (
    <section className="logo-bar">
      <div className="container">
        <div className="logo-bar__label">From the first ten hires to the next hundred — Asteroid runs the engine.</div>
        <div className="logo-bar__row">
          {logos.map((l) => (
            <span className="logo-bar__item" key={l}>{l}</span>
          ))}
        </div>
      </div>
    </section>
  );
}
window.LogoBar = LogoBar;
