Files
gestion-materiaux-destock/src/app/layout.tsx
T
2026-06-07 00:20:36 +02:00

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>
)
}