/* app.jsx — Root */
function App() {
  return (
    <main
      className="text-white antialiased"
      style={{
        backgroundColor: '#08090c',
        backgroundImage: 'url("assets/marble-black.jpg")',
        backgroundSize: '420px 420px',
        backgroundPosition: 'center top',
        backgroundRepeat: 'repeat',
        backgroundAttachment: 'fixed'
      }}>
      <Hero />
      <WorksSection />
      <FinalCTA />
      <Footer />
    </main>
  );
}

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