update: add gitgnore

This commit is contained in:
Tom Boullay
2026-04-03 10:41:56 +02:00
parent a730946ad2
commit 5007a255da
9 changed files with 427 additions and 224 deletions
+11 -18
View File
@@ -2,33 +2,26 @@ import UploadZone from '@/components/UploadZone'
export default function Home() {
return (
<main className="min-h-screen bg-surface-soft flex flex-col items-center justify-center p-6">
{/* Header */}
<main className="min-h-screen bg-black-900 flex flex-col items-center justify-center p-6">
<div className="w-full max-w-2xl mb-10 text-center">
<div className="inline-flex items-center gap-2 mb-4 px-3 py-1 rounded-full bg-brand-100 border border-brand-200 text-brand-600 text-xs font-medium uppercase tracking-widest">
<span className="w-1.5 h-1.5 rounded-full bg-brand-500 animate-pulse" />
Git LFS · Déploiement continu
</div>
<h1 className="text-4xl font-bold tracking-tight mb-3">
<span className="text-gradient">Asset Bridge 3D</span>
<h1 className="text-4xl font-bold tracking-tight mb-3 text-white">
Upload GLTF
</h1>
<p className="text-gray-500 text-base leading-relaxed">
Déposez vos fichiers 3D ils seront automatiquement versionnés
<br />et poussés sur le dépôt GitHub via Git LFS.
<p className="text-gray-400 text-base leading-relaxed">
Drop your 3D files they will be automatically versioned
<br />and pushed to your GitHub repository via Git LFS.
</p>
</div>
{/* Upload Zone */}
<UploadZone />
{/* Footer */}
<footer className="mt-10 text-gray-400 text-xs text-center">
Modèles : <span className="font-mono text-gray-500">.glb · .gltf · .fbx</span>
<footer className="mt-10 text-gray-500 text-xs text-center">
Models: <span className="font-mono text-gray-400">.glb · .gltf · .fbx</span>
<span className="mx-2">·</span>
Textures : <span className="font-mono text-gray-500">.png · .jpg · .webp · .ktx2</span>
Textures: <span className="font-mono text-gray-400">.png · .jpg · .webp · .ktx2</span>
<span className="mx-2">·</span>
Taille max : <span className="font-mono text-gray-500">2 GB</span>
Max size: <span className="font-mono text-gray-400">2 GB</span>
</footer>
</main>
)
}
}