2023-03-19 22:13:00 +08:00
|
|
|
import "./styles/globals.scss";
|
|
|
|
import "./styles/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-16 01:24:03 +08:00
|
|
|
<html lang="en">
|
2023-03-15 01:44:42 +08:00
|
|
|
<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
|
|
|
}
|