// Root App component

const App = () => {
  return (
    <React.Fragment>
      <window.Nav />
      <window.Hero />
      <window.About />
      <window.KeyStats />
      <window.Career />
      <window.Videos />
      <window.Gallery />
      <window.Skills />
      <window.Achievements />
      <window.Testimonials />
      <window.Contact />
      <window.Footer />
    </React.Fragment>
  );
};

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