// 02 Social proof — classic B2B row of logos
const SocialProof = () => {
  const brands = [
    'ATELIER NORD',
    'MAISON·7',
    'LUNE & CO',
    'VERSA',
    'HÉMISPHÈRE',
    'ORBIT',
  ];

  return (
    <section className="proof" data-screen-label="02 Social Proof">
      <div className="proof__inner">
        <p className="proof__eyebrow">Trusted by fashion brands worldwide</p>
        <div className="proof__row">
          {brands.map((b, i) => (
            <span className="proof__logo" key={i}>{b}</span>
          ))}
        </div>
      </div>
    </section>
  );
};

window.SocialProof = SocialProof;
