feat: add src/app/layout.tsx

This commit is contained in:
cupadev-admin 2026-03-09 07:22:53 +00:00
parent a899b1b568
commit 3d6683a40c
1 changed files with 19 additions and 0 deletions

19
src/app/layout.tsx Normal file
View File

@ -0,0 +1,19 @@
import type { Metadata } from 'next'
import './globals.css'
export const metadata: Metadata = {
title: 'Personal CMS',
description: 'Mon Musée Personnel',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="fr">
<body>{children}</body>
</html>
)
}