function App() {
  return (
    <div style={{ background: '#0F0F0F' }}>
      <Navbar />
      <Hero />
      <About />
      <Experience />
      <Gallery />
      <MenuPreview />
      <Events />
      <Contact />
      <Footer />
    </div>
  );
}

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