1 2 3 4 5 6 7 8 9 10 11 12 13 14
import Header from './header'; import Footer from './footer'; export default function Layout({ children }) { return ( <> <html class="bg-gray-950 text-white"> <Header /> <body class="h-screen"><main>{children}</main></body> <Footer /> </html> </> ); }