import type { Metadata } from 'next'; import { Inter } from 'next/font/google'; import './globals.css'; import { QueryProvider } from '@/lib/providers/query-provider'; import { AuthProvider } from '@/lib/context/auth-context'; const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { title: 'Xpeditis - Maritime Freight Booking Platform', description: 'Search, compare, and book maritime freight in real-time', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }