layout.tsx 407 B

1234567891011
  1. import type { Metadata } from "next";
  2. import "./globals.css";
  3. export const metadata: Metadata = {
  4. title: "智能创作系统 · 真实执行观察器",
  5. description: "全局 Planner、动态 Task 树、Task 生命周期与 Worker 工具循环",
  6. };
  7. export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
  8. return <html lang="zh-CN"><body>{children}</body></html>;
  9. }