const { createRoot } = ReactDOM;

function App() {
  return (
    <main style={{ width: "100%", overflowX: "hidden" }}>
      <NavBar />
      <Hero />
      <Vision />
      <Principles />
      <Journey />
      <Plans />
      <Team />
      <Footer />
    </main>
  );
}

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