/* eslint-disable @next/next/no-page-custom-font */ import "./styles/globals.scss"; import "./styles/markdown.scss"; import "./styles/highlight.scss"; import { getClientConfig } from "./config/client"; 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 ( {children} ); }