pixelpulse-reactor / script.js
Agniv1's picture
Can you add react components to this website and make it more responsive.
86a3569 verified
raw
history blame contribute delete
360 Bytes
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 />);