Spaces:
Sleeping
Sleeping
| 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; | |