Spaces:
Sleeping
Sleeping
File size: 370 Bytes
e750cc9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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>
);
}
|