function App(){
  return (
    <React.Fragment>
      <Nav/>
      <Hero/>
      <InteractiveDemo/>
      <Pillars/>
      <HowItWorks/>
      <Explore/>
      <Earnings/>
      <Clipper/>
      <Pricing/>
      <Footer/>
    </React.Fragment>
  );
}

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