diff --git a/app/layout.tsx b/app/layout.tsx index f4304a7..ebb694f 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,15 +1,31 @@ +import type { Metadata } from "next"; +import { Geist, Geist_Mono } from "next/font/google"; -export const metadata = { - title: 'Next.tsx', - description: 'Generated by Next.js' -} +const geistSans = Geist({ + variable: "--font-geist-sans", + subsets: ["latin"], +}); -export default function RootLayout({ children }) { - return( +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", + subsets: ["latin"], +}); + +export const metadata: Metadata = { + title: "Create Next App", + description: "Generated by create next app", +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( - {children} + + {children} + - ) + ); } - -