// Site app — compose the page.

function App() {
  return (
    <div>
      <div className="hf-cover-track">
        <IntroCover />
      </div>
      <div id="start" className="hf-page">
        <TopNav />
        <Hero />
        <TrustStrip />
        <Services />
        <Pillars />
        <Process />
        <FinalCTA />
        <Footer />
      </div>
    </div>
  );
}

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