30 lines
729 B
TypeScript
30 lines
729 B
TypeScript
import type { Metadata } from "next";
|
|
import { AntdRegistry } from "@ant-design/nextjs-registry";
|
|
import "antd/dist/reset.css";
|
|
import "./globals.css";
|
|
import { Providers } from "./providers";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Green_Datura 官网",
|
|
description: "展示福州大学至诚学院 Green_Datura 网络安全俱乐部简介、荣誉成果与微信公众号入口。",
|
|
icons: {
|
|
icon: "/assets/green-datura-logo-mark.png"
|
|
}
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="zh-CN">
|
|
<body>
|
|
<AntdRegistry>
|
|
<Providers>{children}</Providers>
|
|
</AntdRegistry>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|