Spaces:
Running
Running
File size: 342 Bytes
cc2caf9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import Navbar from '../components/Navbar';
import Footer from '../components/Footer';
import HomePage from './HomePage';
const Index = () => {
return (
<div className="min-h-screen bg-netflix-black text-white">
<Navbar />
<main>
<HomePage />
</main>
<Footer />
</div>
);
};
export default Index;
|