返回 VideoClaw
layout.tsx
根目录 / video-claw / video-claw / frontend / app / layout.tsx
1 import type { Metadata } from "next";
2 import AppShell from "@/components/AppShell";
3 import "./globals.css";
4
5 export const metadata: Metadata = {
6 title: "Video-Claw",
7 description: "AI视频生成工具",
8 };
9
10 export default function RootLayout({
11 children,
12 }: Readonly<{
13 children: React.ReactNode;
14 }>) {
15 return (
16 <html lang="zh-CN">
17 <body
18 className="antialiased"
19 >
20 <AppShell>{children}</AppShell>
21 </body>
22 </html>
23 );
24 }
25
25 lines Plain Text