mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-02 16:16:39 +08:00
34 lines
810 B
TypeScript
34 lines
810 B
TypeScript
/* eslint-disable @next/next/no-page-custom-font */
|
|
import "./styles/globals.scss";
|
|
import "./styles/markdown.scss";
|
|
import "./styles/highlight.scss";
|
|
import { getBuildConfig } from "./config/build";
|
|
|
|
const buildConfig = getBuildConfig();
|
|
|
|
export const metadata = {
|
|
title: "SoulShellGPT",
|
|
description: "Your personal ChatGPT Chat Bot.",
|
|
appleWebApp: {
|
|
title: "SoulShellGPT",
|
|
statusBarStyle: "default",
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="version" content={buildConfig.commitId} />
|
|
<link rel="manifest" href="/site.webmanifest"></link>
|
|
<script src="/serviceWorkerRegister.js" defer></script>
|
|
</head>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|