function App() {
  return (
    <React.Fragment>
      <Nav />
      <Hero />
      <Services />
      <Positioning />
      <Testimonials />
      <About />
      <Pricing />
      <Articles />
      <Contact />
      <Footer />
    </React.Fragment>
  );
}

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