// Marquee.jsx — scrolling trust strip
function Marquee() {
  const items = [
    'AWEC', 'MY PIE', 'NUUNCX', 'STATE OF UTAH',
    'SLC ARTISAN CO', 'BLACK DESERT RESORT', 'FOREMAN LABS',
    'APW SOLUTIONS', 'STRATEGIC COMMUNICATIONS SOLUTIONS',
    'BLACKHOUSE VAPOR', 'VECTOR DEFENSE',
    'ADAMS FAMILY REALTY', 'SAGE3INC',
    'SALT LAKE CITY POLICE DEPT.'
  ];
  // duplicate for seamless loop
  const doubled = [...items, ...items];
  return (
    <div className="marquee" aria-hidden>
      <div className="marquee__track">
        {doubled.map((n, i) => (
          <span key={i} className="marquee__item">
            {n}
            <span className="dot" />
          </span>
        ))}
      </div>
    </div>
  );
}
window.Marquee = Marquee;
