Spaces:
Paused
Paused
File size: 487 Bytes
054d282 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import Footer from "@/components/Footer";
import "./globals.css";
export default function RootLayout({ children }) {
return (
<html lang="en">
{/*
<head /> will contain the components returned by the nearest parent
head.js. Find out more at https://beta.nextjs.org/docs/api-reference/file-conventions/head
*/}
<body className="relative min-h-screen">
{children}
{/* Footer */}
<Footer />
</body>
</html>
);
}
|