init du repo

This commit is contained in:
Tom Boullay
2026-04-03 10:22:24 +02:00
parent 929b1075d4
commit a730946ad2
14 changed files with 3224 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
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>
)
}