Browse Source

style(页面元数据): 更新真实执行观察器标题与说明

调整页面 metadata,使浏览器标题和描述与 Script Build Execution Observer 的真实运行定位一致,并清理旧演示版命名。
SamLee 19 hours ago
parent
commit
e20d429741
1 changed files with 2 additions and 3 deletions
  1. 2 3
      visualization/frontend/app/layout.tsx

+ 2 - 3
visualization/frontend/app/layout.tsx

@@ -1,10 +1,9 @@
 import type { Metadata } from "next";
-import "@xyflow/react/dist/style.css";
 import "./globals.css";
 
 export const metadata: Metadata = {
-  title: "Script Build Mission Control",
-  description: "智能创作构建系统节点画布",
+  title: "智能创作系统 · 真实执行观察器",
+  description: "全局 Planner、动态 Task 树、Task 生命周期与 Worker 工具循环",
 };
 
 export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {