chore: scaffold Next.js 14 app

This commit is contained in:
2026-06-06 16:04:15 +02:00
commit f435b1f6cc
16 changed files with 12399 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'
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}>{children}</body>
</html>
)
}