/* 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: "ChatGPT Next Web", description: "Your personal ChatGPT Chat Bot.", appleWebApp: { title: "ChatGPT Next Web", statusBarStyle: "default", }, themeColor: "#fafafa", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }