| 12345678910111213141516171819 |
- import type { Metadata } from "next";
- import "./globals.css";
- export const metadata: Metadata = {
- title: "Content Find Agent",
- description: "Content Find Agent V1 run dashboard"
- };
- export default function RootLayout({
- children
- }: Readonly<{
- children: React.ReactNode;
- }>) {
- return (
- <html lang="zh-CN">
- <body>{children}</body>
- </html>
- );
- }
|