import type { Metadata } from 'next'; import AuthLayout from '@/components/AuthLayout'; import { Navbar } from '@/components/Navbar'; import { routing } from '@/libs/i18nNavigation'; import { isDevMode } from '@/utils/Helpers'; import { Inter, Outfit } from 'next/font/google'; import '../styles/global.css'; const inter = Inter({ subsets: ['latin'], variable: '--font-sans', }); // Use Outfit from Google Fonts instead of Cal Sans const outfit = Outfit({ subsets: ['latin'], variable: '--font-heading', }); export const metadata: Metadata = { title: 'X-App', description: 'A clone of Jan.ai built with Next.js and Tailwind CSS', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }