| import "../globals.css"; | |
| import type { ReactNode } from "react"; | |
| export const metadata = { | |
| title: "AndesOps AI", | |
| description: "Enterprise tender intelligence for Chilean public procurement.", | |
| }; | |
| export default function RootLayout({ children }: { children: ReactNode }) { | |
| return ( | |
| <html lang="es"> | |
| <body>{children}</body> | |
| </html> | |
| ); | |
| } | |