/* eslint-disable @next/next/no-page-custom-font */ import { SWRProvider } from '@/app/provider'; export const metadata = { title: process.env.NEXT_PUBLIC_TITLE || 'ChatGPT Admin Web', description: 'Your personal ChatGPT Bot.', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }