function App() {
  return (
    <>
      <Nav />
      <Hero />
      <MrzStrip />
      <ThirtyFive />
      <Passport />
      <MrzStrip text="RARITY&lt;&lt;COMMON&lt;&lt;UNCOMMON&lt;&lt;RARE&lt;&lt;EPIC&lt;&lt;LEGENDARY&lt;&lt;XP&lt;MULT&lt;1.0x&lt;1.25x&lt;1.5x&lt;2.0x&lt;3.0x&lt;&lt;&lt;&lt;" />
      <Rarity />
      <Levels />
      <Season />
      <Social />
      <Districts />
      <Categories />
      <Press />
      <FAQ />
      <Footer />
    </>
  );
}

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App />);
