Spaces:
Running
Running
File size: 360 Bytes
86a3569 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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 />); |