// Site app — compose the page.

function App() {
  return (
    <div>
      <TopNav />
      <Hero />
      <TrustStrip />
      <Services />
      <Pillars />
      <Process />
      <FinalCTA />
      <Footer />
    </div>
  );
}

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