function App() {
  return (
    <>
      <Nav />
      <Hero />
      {/* <Samples /> */}
      <Reviews />
      {/* <Portfolios /> */}
      <Process />
      <Pricing />
      {/* <Options /> */}
      <Footer />
    </>
  );
}

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