NextChat-U/app/layout.tsx

24 lines
495 B
TypeScript
Raw Normal View History

2023-03-13 04:06:21 +09:00
import "./globals.scss";
2023-03-14 01:25:07 +09:00
import "./markdown.scss";
2023-03-08 00:23:54 +09:00
export const metadata = {
2023-03-10 02:01:40 +09:00
title: "ChatGPT Next Web",
description: "Your personal ChatGPT Chat Bot.",
};
2023-03-08 00:23:54 +09:00
export default function RootLayout({
children,
}: {
2023-03-10 02:01:40 +09:00
children: React.ReactNode;
2023-03-08 00:23:54 +09:00
}) {
return (
2023-03-15 02:44:42 +09:00
<html lang="zh-Hans-CN">
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
2023-03-08 00:23:54 +09:00
<body>{children}</body>
</html>
2023-03-10 02:01:40 +09:00
);
2023-03-08 00:23:54 +09:00
}