serp-chat / src /app /layout.jsx
matt HOFFNER
revamp
054d282
raw
history blame
487 Bytes
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>
);
}