import type { Metadata } from "next"; import type { ReactNode } from "react"; import "@xyflow/react/dist/style.css"; import "./globals.css"; export const metadata: Metadata = { title: "脚本构建运行台", description: "脚本构建轮次、分支、决策依据与创作表变更的真实运行可视化" }; export default function RootLayout({ children }: Readonly<{ children: ReactNode }>) { return {children}; }