import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; const geistSans = Geist({ subsets: ["latin"], variable: "--font-geist-sans", }); const geistMono = Geist_Mono({ subsets: ["latin"], variable: "--font-geist-mono", }); export const metadata: Metadata = { description: "Generated by create next app", title: "Create Next App", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }