Files
upload-gltf/app/layout.tsx
T
Tom Boullay a730946ad2 init du repo
2026-04-03 10:22:24 +02:00

20 lines
382 B
TypeScript

import type { Metadata } from 'next'
import './globals.css'
export const metadata: Metadata = {
title: 'Asset Bridge 3D',
description: 'Interface de dépôt sécurisé pour fichiers 3D (.glb, .gltf, .fbx)',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="fr">
<body>{children}</body>
</html>
)
}