import type { Metadata } from 'next' import { Inter } from 'next/font/google' import './globals.css' import { SessionProvider } from '@/components/providers/SessionProvider' const inter = Inter({ subsets: ['latin'] }) export const metadata: Metadata = { title: 'Gestion — Matériaux Destock', description: 'Interface de gestion produits et images', } export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ) }