Initial commit

This commit is contained in:
2025-12-21 22:35:36 +09:00
commit c206a31af6
15 changed files with 3881 additions and 0 deletions

45
index.html Normal file
View File

@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MotionSimulator</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
gray: {
750: '#2d3748',
850: '#1a202c',
950: '#0d1117',
}
}
}
}
}
</script>
<style>
body { margin: 0; overflow: hidden; background-color: #0f172a; color: white; }
</style>
<script type="importmap">
{
"imports": {
"react/": "https://esm.sh/react@^19.2.3/",
"react": "https://esm.sh/react@^19.2.3",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"@react-three/fiber": "https://esm.sh/@react-three/fiber@^9.4.2",
"lucide-react": "https://esm.sh/lucide-react@^0.562.0",
"three": "https://esm.sh/three@^0.182.0",
"@react-three/drei": "https://esm.sh/@react-three/drei@^10.7.7"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>