60c68ac586
Deploy / Build Production Runtime Images (push) Has been skipped
Deploy / Deploy Production (push) Has been skipped
Deploy / Production Browser E2E (push) Has been skipped
Deploy / Deploy Staging (push) Failing after 210h47m24s
CI/CD Pipeline / Frontend Lint (push) Failing after 210h47m48s
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 210h47m52s
21 lines
456 B
TypeScript
21 lines
456 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
// eslint-disable-next-line react-refresh/only-export-components
|
|
export const metadata: Metadata = {
|
|
title: "小虾 SaaS - 项目推进器",
|
|
description: "AI 视频自动化剪辑系统 - 项目管理",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="zh-CN">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|