8d06706a24
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
601 B
TypeScript
22 lines
601 B
TypeScript
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 (
|
|
<html lang="fr">
|
|
<body className={inter.className}>
|
|
<SessionProvider>{children}</SessionProvider>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|