File size: 358 Bytes
e418416 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 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>
);
}
|