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 (
{children}
); }