import type { Metadata } from 'next' import { Inter } from 'next/font/google' import './globals.css' import { I18nProvider } from '@/lib/i18n' const inter = Inter({ subsets: ['latin'], weight: ['300', '400', '500', '600'] }) export const metadata: Metadata = { title: '420Deals.ch – Premium Swiss CBD Drops', description: 'Shop together. Wholesale prices for private buyers.', } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) }