// Unified Stack landing page root app
function USApp() {
  return (
    <React.Fragment>
      <Nav />
      <USHero />
      <USProblem />
      <USSolution />
      <USDeepIntro />
      <USDeepDives />
      <USSocialProof />
      <USFinalCTA />
      <Footer />
    </React.Fragment>
  );
}

const usRoot = ReactDOM.createRoot(document.getElementById("root"));
usRoot.render(<USApp />);
