import type { Metadata } from 'next'; import { Inter } from 'next/font/google'; import './globals.css'; import { AuthProvider } from '@/lib/contexts/AuthContext'; const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { title: 'ThrillWiki - Roller Coaster Database', description: 'Comprehensive database of theme parks, roller coasters, and attractions worldwide', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }