ChatGPT-Next-Web/app/layout.tsx

43 lines
1.0 KiB
TypeScript
Raw Normal View History

2023-03-25 14:24:52 +00:00
/* eslint-disable @next/next/no-page-custom-font */
2023-03-19 14:13:00 +00:00
import "./styles/globals.scss";
import "./styles/markdown.scss";
import "./styles/highlight.scss";
2023-04-10 17:21:34 +00:00
import { getBuildConfig } from "./config/build";
2023-04-10 17:21:34 +00:00
const buildConfig = getBuildConfig();
2023-03-07 15:23:54 +00:00
export const metadata = {
2023-03-09 17:01:40 +00:00
title: "ChatGPT Next Web",
2023-03-25 14:24:52 +00:00
description: "Your personal ChatGPT Chat Bot.",
viewport: {
width: "device-width",
initialScale: 1,
maximumScale: 1,
},
themeColor: [
{ media: "(prefers-color-scheme: light)", color: "#fafafa" },
{ media: "(prefers-color-scheme: dark)", color: "#151515" },
],
2023-03-27 07:02:12 +00:00
appleWebApp: {
title: "ChatGPT Next Web",
statusBarStyle: "default",
2023-03-27 07:02:12 +00:00
},
2023-03-09 17:01:40 +00:00
};
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-15 17:24:03 +00:00
<html lang="en">
<head>
2023-04-10 17:21:34 +00:00
<meta name="version" content={buildConfig.commitId} />
<link rel="manifest" href="/site.webmanifest"></link>
2023-03-27 10:02:35 +00:00
<script src="/serviceWorkerRegister.js" defer></script>
</head>
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
}