import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "智能创作系统 · 创作旅程", description: "展示智能创作系统的规划、执行、验收和返工过程", }; export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) { return {children}; }