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