negoptimAi / frontend /src /app /layout.tsx
samir12321's picture
Initial commit: Negoptim AI RAG chatbot (backend + frontend + deploy config)
af404c9
Raw
History Blame Contribute Delete
563 Bytes
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>
);
}