Spaces:
Sleeping
Sleeping
| import type { Metadata } from "next"; | |
| import { Inter } from "next/font/google"; | |
| import "./globals.css"; | |
| const inter = Inter({ subsets: ["latin"] }); | |
| export const metadata: Metadata = { | |
| title: "ERP Premium | Next Generation Control Panel", | |
| description: "Modern Enterprise Resource Planning system powered by Firebase", | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode; | |
| }>) { | |
| return ( | |
| <html lang="es"> | |
| <body className={`${inter.className} bg-[#0f172a]`}>{children}</body> | |
| </html> | |
| ); | |
| } | |