layout.tsx 368 B

12345678910111213141516171819
  1. import type { Metadata } from "next";
  2. import "./globals.css";
  3. export const metadata: Metadata = {
  4. title: "Content Find Agent",
  5. description: "Content Find Agent V1 run dashboard"
  6. };
  7. export default function RootLayout({
  8. children
  9. }: Readonly<{
  10. children: React.ReactNode;
  11. }>) {
  12. return (
  13. <html lang="zh-CN">
  14. <body>{children}</body>
  15. </html>
  16. );
  17. }