ChatGPT-Next-Web/app/layout.tsx

24 lines
495 B
TypeScript
Raw Normal View History

2023-03-12 19:06:21 +00:00
import "./globals.scss";
2023-03-13 16:25:07 +00:00
import "./markdown.scss";
2023-03-07 15:23:54 +00:00
export const metadata = {
2023-03-09 17:01:40 +00:00
title: "ChatGPT Next Web",
description: "Your personal ChatGPT Chat Bot.",
};
2023-03-07 15:23:54 +00:00
export default function RootLayout({
children,
}: {
2023-03-09 17:01:40 +00:00
children: React.ReactNode;
2023-03-07 15:23:54 +00:00
}) {
return (
2023-03-14 17:44:42 +00: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-07 15:23:54 +00:00
<body>{children}</body>
</html>
2023-03-09 17:01:40 +00:00
);
2023-03-07 15:23:54 +00:00
}