21 lines
475 B
TypeScript
21 lines
475 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "TeaTea 康护智慧养老系统",
|
|
description: "AI赋能智慧养老系统后台管理端初步框架",
|
|
};
|
|
|
|
type RootLayoutProps = {
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
export default function RootLayout({ children }: RootLayoutProps): React.ReactElement {
|
|
return (
|
|
<html lang="zh-CN" suppressHydrationWarning>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|