20 lines
440 B
TypeScript
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>
|
|
);
|
|
}
|