// OEMStrip.jsx — black strip with section title + greyed manufacturer logos

function OEMStrip() {
  // 6 placeholder slots; same OEM asset reused (single OEM image was provided).
  const slots = Array.from({ length: 6 });
  return (
    <section className="rd-oem" data-screen-label="01 Home / OEM">
      <div className="rd-oem__title">OEM&nbsp;Certifications</div>
      <div className="rd-oem__row">
        {slots.map((_, i) => (
          <div key={i} className="rd-oem__logo" style={{ backgroundImage: "url(assets/oem-1.jpg)" }} />
        ))}
      </div>
    </section>
  );
}

window.OEMStrip = OEMStrip;
