From fd120c904e945125caca50d48d2155798b971dec Mon Sep 17 00:00:00 2001 From: Josue Alejandro Date: Wed, 12 Mar 2025 15:18:08 -0600 Subject: [PATCH] se regreso --- app/layout.tsx | 36 ++++++++++++++++++++++++++---------- 1 file changed, 26 insertions(+), 10 deletions(-) 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} + - ) + ); } - -