/* App root — composes all sections */

function App() {
  return (
    <React.Fragment>
      <Header />
      <Hero />
      <Problem />
      <Scenario />
      <Process />
      {/* <Benchmark /> */}
      <Architecture />
      <Prototype />
      <Study />
      <Outputs />
      <Results />
      <Learnings />
      <Role />
      <Footer />
    </React.Fragment>
  )
}

const root = ReactDOM.createRoot(document.getElementById("root"))
root.render(<App />)
