layout.tsx 466 B

12345678910111213
  1. import type { Metadata } from "next";
  2. import type { ReactNode } from "react";
  3. import "@xyflow/react/dist/style.css";
  4. import "./globals.css";
  5. export const metadata: Metadata = {
  6. title: "脚本构建运行台",
  7. description: "脚本构建轮次、分支、决策依据与创作表变更的真实运行可视化"
  8. };
  9. export default function RootLayout({ children }: Readonly<{ children: ReactNode }>) {
  10. return <html lang="zh-CN"><body>{children}</body></html>;
  11. }