function App() {
  return (
    <div>
      <Nav />
      <main>
        <Hero />
        <About />
        <Services />
        <Approach />
        <Pricing />
        <FAQ />
        <Contact />
      </main>
      <Footer />
    </div>
  );
}

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