// Mount the landing page

function App() {
  return (
    <React.Fragment>
      <Nav />
      <Hero />
      <Marquee />
      <Concept />
      <Steps />
      <FinalCTA />
      <Footer />
    </React.Fragment>
  );
}

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App />);
