Spaces:
Running
Running
| const App = () => { | |
| return ( | |
| <div className="min-h-screen flex flex-col"> | |
| <Navbar /> | |
| <main className="flex-grow"> | |
| <Hero /> | |
| <Features /> | |
| </main> | |
| <Footer /> | |
| </div> | |
| ); | |
| } | |
| const root = ReactDOM.createRoot(document.getElementById('root')); | |
| root.render(<App />); |