const NsMarquee = () => {
  const items = ['Set Your Goals with Us', 'We\'ll Guide You to Success', 'IPO Advisory', 'Internal Control', 'Accounting Services', 'COSO ERM', 'TFRS for PAEs'];
  const all = [...items, ...items, ...items];

  return (
    <section className="ns-marquee" aria-label="Northstar service highlights">
      <div className="ns-marquee__track">
        {all.map((t, i) => (
          <span key={i}>{t}<img src="assets/star-glyph.svg" alt="" /></span>
        ))}
      </div>
    </section>
  );
};

window.NsMarquee = NsMarquee;
