/* global React, ReactDOM */

function App() {
  return (
    <>
      <CursorCrosshair />
      <Nav />
      <Hero />
      <DiscoverySection />
      <LeaksSection />
      <IndustriesSection />
      <ProcessSection />
      <WhySection />
      <ContactSection />
      <Footer />
    </>
  );
}

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