Spaces:
Build error
Build error
| 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> | |
| </> | |
| ); | |
| } |