import type { Metadata } from "next"; import { Inter, Source_Serif_4 } from "next/font/google"; import "./globals.css"; const inter = Inter({ variable: "--font-sans", subsets: ["latin"], display: "swap", }); const serif = Source_Serif_4({ variable: "--font-serif", subsets: ["latin"], display: "swap", }); export const metadata: Metadata = { title: "Co-op Check-in ยท Food Co-op Initiative", description: "Update your co-op's progress through the FCI organizing framework.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }