Files
AiTool/frontend/app/layout.tsx
丹尼尔 ad96272ab6 fix:bug
2026-03-12 19:35:06 +08:00

20 lines
440 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Ops-Core | 自动化办公与业务中台",
description: "Monolithic automation & business ops platform",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="zh-CN">
<body className="antialiased min-h-screen">{children}</body>
</html>
);
}