25 lines
514 B
TypeScript
25 lines
514 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
import '@fortawesome/fontawesome-svg-core/styles.css'
|
|
import '@ant-design/v5-patch-for-react-19';
|
|
export const metadata: Metadata = {
|
|
title: "Create Next App",
|
|
description: "Generated by create next app",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="zh-CN">
|
|
<body
|
|
className={`antialiased`}
|
|
>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|