Spaces:
Build error
Build error
File size: 647 Bytes
35a4b1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import Head from 'next/head';
import Header from './Header';
import Footer from './Footer';
export default function Layout({ children, title = 'सोशल Run Club' }) {
return (
<>
<Head>
<title>{title}</title>
<meta name="description" content="Kanpur's premier running community" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</Head>
<div className="min-h-screen flex flex-col">
<Header />
<main className="flex-1 w-full max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-6">
{children}
</main>
<Footer />
</div>
</>
);
} |