function CgiApp() {
  return (
    <>
      <CgiHeader />
      <main style={{ display: "flex", flexDirection: "column" }}>
        <CgiHero />
        <CgiIntro />
        <SetupSection />
        <NutshellSection />
      </main>
      <ProjectNav
        prev={{
          href: "/genui-infotainment",
          title: "Context Aware Generative UI for In-car Infotainment",
        }}
        next={{
          href: "/repurpose",
          title: "DIY & Upcycling Using Generative AI",
        }}
      />
      <Footer />
    </>
  )
}

ReactDOM.hydrateRoot(document.getElementById("root"), <CgiApp />)
