Spaces:
Sleeping
Sleeping
| import { Outlet } from 'react-router-dom'; | |
| import Navbar from './Navbar'; | |
| import Footer from './Footer'; | |
| export default function Layout() { | |
| return ( | |
| <div className="flex flex-col min-h-screen bg-gray-50"> | |
| <Navbar /> | |
| <main className="flex-grow container mx-auto px-4 py-8 max-w-7xl"> | |
| <Outlet /> | |
| </main> | |
| <Footer /> | |
| </div> | |
| ); | |
| } | |