ChatGPT-Next-Web/app/layout.tsx

24 lines
495 B
TypeScript
Raw Normal View History

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