/* global React, ReactDOM, Nav, Hero, Problem, Solution, HowItWorks, Results, WhoFor, Services, FinalCTA, Footer */

function App() {
  return (
    <React.Fragment>
      <Nav />
      <Hero />
      <Problem />
      <Solution />
      <HowItWorks />
      <Results />
      <WhoFor />
      <Services />
      <FinalCTA />
      <Footer />
    </React.Fragment>
  );
}

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