se regreso

This commit is contained in:
Josue Alejandro
2025-03-12 15:18:08 -06:00
parent 94d9df6bdc
commit fd120c904e
+26 -10
View File
@@ -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 (
<html lang="en">
<body>{children}</body>
<body className={`${geistSans.variable} ${geistMono.variable}`}>
{children}
</body>
</html>
)
);
}