// ============================================================
// Alprovid — App entry
// ============================================================

function App() {
  return (
    <>
      <div className="grain" aria-hidden="true" />
      <Nav />
      <main>
        <Hero />
        <About />
        <Clients />
        <Midrag />
        <Services />
        <Portfolio />
        <Process />
        <Testimonials />
        <Contact />
      </main>
      <Footer />
      <WAFloat />
    </>
  );
}

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