ChatGPT-Next-Web/app/layout.tsx

42 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";
import { getClientConfig } from "./config/client";
import { type Metadata } from "next";
2023-03-07 15:23:54 +00:00
2023-07-16 13:34:01 +00:00
export const metadata: Metadata = {
2023-12-23 08:48:16 +00:00
title: "NextChat",
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: {
2023-12-23 08:48:16 +00:00
title: "NextChat",
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>
<meta name="config" content={JSON.stringify(getClientConfig())} />
<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
}