import type { Metadata } from "next";
import "./globals.css";

export const metadata: Metadata = {
  title: "AI 助手",
  description: "FFOA 内部 AI Coding Assistant",
};

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="zh-CN">
      <body className="bg-neutral-950 text-neutral-100 antialiased">
        {children}
      </body>
    </html>
  );
}
