Spaces:
Sleeping
Sleeping
| import Navbar from '../components/Navbar'; | |
| import Footer from '../components/Footer'; | |
| import { Outlet } from 'react-router-dom'; | |
| const MainLayout = () => { | |
| return ( | |
| <div className="min-h-screen bg-netflix-black text-white"> | |
| <Navbar /> | |
| <main> | |
| <Outlet /> | |
| </main> | |
| <Footer /> | |
| </div> | |
| ); | |
| }; | |
| export default MainLayout; | |