import { Inter, Bricolage_Grotesque } from "next/font/google"; import "./globals.css"; import "./tailwind.css"; import Footer from "./components/Footer"; const inter = Inter({ subsets: ["latin"], weight: ["400"], variable: "--font-inter", }); const bricolageGrotesque = Bricolage_Grotesque({ subsets: ["latin"], weight: ["400"], variable: "--font-bricolage-grotesque", }); export default function RootLayout({ children }) { return (