const App = () => (
  <>
    <Navbar />
    <Hero />
    <Stats />
    <Services />
    <Value />
    <Industries />
    <Why />
    <CTABand />
    <Footer />
  </>
);

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