Spaces:
Running
Running
| import type { Metadata } from "next"; | |
| import "./globals.css"; | |
| export const metadata: Metadata = { | |
| title: "Negoptim AI — Intelligent Assistant", | |
| description: | |
| "Negoptim AI is the virtual assistant for Users Love IT — helping with commercial negotiations, procurement optimization, and supplier collaboration.", | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: { | |
| children: React.ReactNode; | |
| }) { | |
| return ( | |
| <html lang="en" style={{ background: "#F0F2F5" }}> | |
| <body style={{ background: "#F0F2F5" }}>{children}</body> | |
| </html> | |
| ); | |
| } | |