layout.tsx 389 B

1234567891011
  1. import type { Metadata } from "next";
  2. import "./globals.css";
  3. export const metadata: Metadata = {
  4. title: "智能创作系统 · 创作旅程",
  5. description: "展示智能创作系统的规划、执行、验收和返工过程",
  6. };
  7. export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
  8. return <html lang="zh-CN"><body>{children}</body></html>;
  9. }