Files
community-rule/app/layout.js
T
2025-08-22 13:57:56 -06:00

39 lines
981 B
JavaScript

import { Inter, Bricolage_Grotesque, Space_Grotesk } from "next/font/google";
import "./globals.css";
import HomeHeader from "./components/HomeHeader";
import Footer from "./components/Footer";
const inter = Inter({
subsets: ["latin"],
weight: ["400", "500"],
variable: "--font-inter",
});
const bricolageGrotesque = Bricolage_Grotesque({
subsets: ["latin"],
weight: ["400", "500", "700"],
variable: "--font-bricolage-grotesque",
});
const spaceGrotesk = Space_Grotesk({
subsets: ["latin"],
weight: ["400", "500", "700"],
variable: "--font-space-grotesk",
});
export default function RootLayout({ children }) {
return (
<html lang="en">
<body
className={`${inter.variable} ${bricolageGrotesque.variable} ${spaceGrotesk.variable}`}
>
<div className="min-h-screen flex flex-col">
<HomeHeader />
<main className="flex-1">{children}</main>
<Footer />
</div>
</body>
</html>
);
}