import type { Metadata } from 'next' import MarketplaceShell from '@/components/MarketplaceShell' import { getMarketplaceLanguage } from '@/lib/i18n.server' import './globals.css' export const metadata: Metadata = { title: 'RentalDriveGo Marketplace', description: 'Discover vehicles from trusted rental companies.', icons: { icon: '/rentalcardrive.png', shortcut: '/favicon.ico', apple: '/rentalcardrive.png', }, } export default function RootLayout({ children }: { children: React.ReactNode }) { const language = getMarketplaceLanguage() return (
{/* Runs before hydration to prevent flash of wrong theme */}