carbonx commited on
Commit
40d0fb2
·
verified ·
1 Parent(s): 30f3d1d

A game engine with animation and level editor.

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +270 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Pixelmotion Forge
3
- emoji: 🏆
4
- colorFrom: red
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: PixelMotion Forge 🎮
3
+ colorFrom: gray
4
+ colorTo: green
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,271 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>PixelMotion Forge - Game Engine</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
12
+ <style>
13
+ #vanta-bg {
14
+ position: absolute;
15
+ top: 0;
16
+ left: 0;
17
+ width: 100%;
18
+ height: 100%;
19
+ z-index: -1;
20
+ opacity: 0.7;
21
+ }
22
+ .card-hover {
23
+ transition: all 0.3s ease;
24
+ }
25
+ .card-hover:hover {
26
+ transform: translateY(-10px);
27
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
28
+ }
29
+ .editor-preview {
30
+ background-image: url('http://static.photos/gaming/1024x576/42');
31
+ background-size: cover;
32
+ background-position: center;
33
+ }
34
+ </style>
35
+ </head>
36
+ <body class="bg-gray-900 text-white min-h-screen">
37
+ <div id="vanta-bg"></div>
38
+
39
+ <!-- Navigation -->
40
+ <nav class="bg-gray-800 bg-opacity-90 backdrop-blur-md sticky top-0 z-50">
41
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
42
+ <div class="flex items-center justify-between h-16">
43
+ <div class="flex items-center">
44
+ <div class="flex-shrink-0">
45
+ <span class="text-2xl font-bold text-indigo-400">PixelMotion<span class="text-yellow-400">Forge</span></span>
46
+ </div>
47
+ <div class="hidden md:block">
48
+ <div class="ml-10 flex items-baseline space-x-4">
49
+ <a href="#" class="bg-indigo-600 text-white px-3 py-2 rounded-md text-sm font-medium">Home</a>
50
+ <a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Features</a>
51
+ <a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Docs</a>
52
+ <a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Community</a>
53
+ </div>
54
+ </div>
55
+ </div>
56
+ <div class="hidden md:block">
57
+ <div class="ml-4 flex items-center md:ml-6">
58
+ <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium flex items-center">
59
+ <i data-feather="download" class="w-4 h-4 mr-2"></i> Download
60
+ </button>
61
+ </div>
62
+ </div>
63
+ <div class="-mr-2 flex md:hidden">
64
+ <button type="button" class="bg-gray-800 inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none">
65
+ <i data-feather="menu"></i>
66
+ </button>
67
+ </div>
68
+ </div>
69
+ </div>
70
+ </nav>
71
+
72
+ <!-- Hero Section -->
73
+ <main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
74
+ <div class="text-center">
75
+ <h1 class="text-5xl font-extrabold tracking-tight sm:text-6xl lg:text-7xl">
76
+ <span class="block text-transparent bg-clip-text bg-gradient-to-r from-indigo-400 to-yellow-400">Create Games</span>
77
+ <span class="block text-3xl font-medium text-gray-300 mt-4">With Ease and Style</span>
78
+ </h1>
79
+ <p class="mt-6 max-w-lg mx-auto text-xl text-gray-300">
80
+ PixelMotion Forge brings powerful animation tools and intuitive level design into one seamless game engine.
81
+ </p>
82
+ <div class="mt-10 flex justify-center">
83
+ <div class="rounded-md shadow">
84
+ <a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 md:py-4 md:text-lg md:px-10">
85
+ Get Started
86
+ </a>
87
+ </div>
88
+ <div class="ml-3 rounded-md shadow">
89
+ <a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10">
90
+ Live Demo
91
+ </a>
92
+ </div>
93
+ </div>
94
+ </div>
95
+
96
+ <!-- Features Grid -->
97
+ <div class="mt-24">
98
+ <h2 class="text-3xl font-bold text-center text-gray-100 mb-12">Powerful Features</h2>
99
+ <div class="grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3">
100
+ <!-- Feature 1 -->
101
+ <div class="card-hover bg-gray-800 bg-opacity-70 rounded-xl p-6 backdrop-blur-sm border border-gray-700">
102
+ <div class="w-12 h-12 bg-indigo-600 rounded-lg flex items-center justify-center mb-4">
103
+ <i data-feather="trending-up" class="w-6 h-6 text-white"></i>
104
+ </div>
105
+ <h3 class="text-xl font-bold text-white mb-2">Real-time Animation</h3>
106
+ <p class="text-gray-300">Smooth frame-by-frame and skeletal animation systems with intuitive timeline editing.</p>
107
+ </div>
108
+
109
+ <!-- Feature 2 -->
110
+ <div class="card-hover bg-gray-800 bg-opacity-70 rounded-xl p-6 backdrop-blur-sm border border-gray-700">
111
+ <div class="w-12 h-12 bg-yellow-500 rounded-lg flex items-center justify-center mb-4">
112
+ <i data-feather="layout" class="w-6 h-6 text-white"></i>
113
+ </div>
114
+ <h3 class="text-xl font-bold text-white mb-2">Visual Level Editor</h3>
115
+ <p class="text-gray-300">Drag-and-drop interface with layers, grids and snapping for perfect level design.</p>
116
+ </div>
117
+
118
+ <!-- Feature 3 -->
119
+ <div class="card-hover bg-gray-800 bg-opacity-70 rounded-xl p-6 backdrop-blur-sm border border-gray-700">
120
+ <div class="w-12 h-12 bg-green-500 rounded-lg flex items-center justify-center mb-4">
121
+ <i data-feather="code" class="w-6 h-6 text-white"></i>
122
+ </div>
123
+ <h3 class="text-xl font-bold text-white mb-2">Scripting Engine</h3>
124
+ <p class="text-gray-300">Powerful JavaScript API with auto-complete and debugging tools built-in.</p>
125
+ </div>
126
+
127
+ <!-- Feature 4 -->
128
+ <div class="card-hover bg-gray-800 bg-opacity-70 rounded-xl p-6 backdrop-blur-sm border border-gray-700">
129
+ <div class="w-12 h-12 bg-red-500 rounded-lg flex items-center justify-center mb-4">
130
+ <i data-feather="cpu" class="w-6 h-6 text-white"></i>
131
+ </div>
132
+ <h3 class="text-xl font-bold text-white mb-2">Physics Engine</h3>
133
+ <p class="text-gray-300">Advanced 2D physics with collisions, joints, particles and soft-body simulation.</p>
134
+ </div>
135
+
136
+ <!-- Feature 5 -->
137
+ <div class="card-hover bg-gray-800 bg-opacity-70 rounded-xl p-6 backdrop-blur-sm border border-gray-700">
138
+ <div class="w-12 h-12 bg-purple-500 rounded-lg flex items-center justify-center mb-4">
139
+ <i data-feather="cloud" class="w-6 h-6 text-white"></i>
140
+ </div>
141
+ <h3 class="text-xl font-bold text-white mb-2">Cloud Publishing</h3>
142
+ <p class="text-gray-300">One-click deploy to web, mobile and desktop platforms with cloud hosting.</p>
143
+ </div>
144
+
145
+ <!-- Feature 6 -->
146
+ <div class="card-hover bg-gray-800 bg-opacity-70 rounded-xl p-6 backdrop-blur-sm border border-gray-700">
147
+ <div class="w-12 h-12 bg-pink-500 rounded-lg flex items-center justify-center mb-4">
148
+ <i data-feather="users" class="w-6 h-6 text-white"></i>
149
+ </div>
150
+ <h3 class="text-xl font-bold text-white mb-2">Multiplayer Ready</h3>
151
+ <p class="text-gray-300">Built-in networking for creating multiplayer games with minimal setup.</p>
152
+ </div>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Editor Preview -->
157
+ <div class="mt-32 bg-gray-800 rounded-xl overflow-hidden border border-gray-700">
158
+ <div class="flex items-center bg-gray-700 px-4 py-3">
159
+ <div class="flex space-x-2">
160
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
161
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
162
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
163
+ </div>
164
+ <div class="ml-4 text-sm text-gray-300">editor.pixelforge.js</div>
165
+ </div>
166
+ <div class="editor-preview h-96 flex items-center justify-center relative">
167
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center">
168
+ <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-md text-lg font-medium flex items-center">
169
+ <i data-feather="play" class="w-5 h-5 mr-2"></i> Launch Editor Demo
170
+ </button>
171
+ </div>
172
+ </div>
173
+ </div>
174
+
175
+ <!-- CTA Section -->
176
+ <div class="mt-32 text-center">
177
+ <h2 class="text-3xl font-bold text-gray-100 mb-6">Ready to Create Your Masterpiece?</h2>
178
+ <p class="text-xl text-gray-300 max-w-2xl mx-auto mb-8">
179
+ Join thousands of developers creating amazing games with PixelMotion Forge. Free to try, easy to learn, powerful enough for professionals.
180
+ </p>
181
+ <div class="flex justify-center">
182
+ <button class="bg-gradient-to-r from-indigo-500 to-purple-600 hover:from-indigo-600 hover:to-purple-700 text-white px-8 py-4 rounded-md text-lg font-medium shadow-lg">
183
+ Download Now - It's Free!
184
+ </button>
185
+ </div>
186
+ </div>
187
+ </main>
188
+
189
+ <!-- Footer -->
190
+ <footer class="bg-gray-800 mt-32">
191
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
192
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
193
+ <div>
194
+ <h3 class="text-white text-sm font-semibold uppercase tracking-wider">Product</h3>
195
+ <ul class="mt-4 space-y-2">
196
+ <li><a href="#" class="text-gray-400 hover:text-white">Features</a></li>
197
+ <li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
198
+ <li><a href="#" class="text-gray-400 hover:text-white">Download</a></li>
199
+ <li><a href="#" class="text-gray-400 hover:text-white">Roadmap</a></li>
200
+ </ul>
201
+ </div>
202
+ <div>
203
+ <h3 class="text-white text-sm font-semibold uppercase tracking-wider">Resources</h3>
204
+ <ul class="mt-4 space-y-2">
205
+ <li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li>
206
+ <li><a href="#" class="text-gray-400 hover:text-white">Tutorials</a></li>
207
+ <li><a href="#" class="text-gray-400 hover:text-white">API Reference</a></li>
208
+ <li><a href="#" class="text-gray-400 hover:text-white">Examples</a></li>
209
+ </ul>
210
+ </div>
211
+ <div>
212
+ <h3 class="text-white text-sm font-semibold uppercase tracking-wider">Community</h3>
213
+ <ul class="mt-4 space-y-2">
214
+ <li><a href="#" class="text-gray-400 hover:text-white">Forums</a></li>
215
+ <li><a href="#" class="text-gray-400 hover:text-white">Discord</a></li>
216
+ <li><a href="#" class="text-gray-400 hover:text-white">Showcase</a></li>
217
+ <li><a href="#" class="text-gray-400 hover:text-white">GitHub</a></li>
218
+ </ul>
219
+ </div>
220
+ <div>
221
+ <h3 class="text-white text-sm font-semibold uppercase tracking-wider">Company</h3>
222
+ <ul class="mt-4 space-y-2">
223
+ <li><a href="#" class="text-gray-400 hover:text-white">About</a></li>
224
+ <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
225
+ <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
226
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
227
+ </ul>
228
+ </div>
229
+ </div>
230
+ <div class="mt-12 border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between">
231
+ <div class="flex space-x-6">
232
+ <a href="#" class="text-gray-400 hover:text-white">
233
+ <i data-feather="twitter"></i>
234
+ </a>
235
+ <a href="#" class="text-gray-400 hover:text-white">
236
+ <i data-feather="github"></i>
237
+ </a>
238
+ <a href="#" class="text-gray-400 hover:text-white">
239
+ <i data-feather="youtube"></i>
240
+ </a>
241
+ <a href="#" class="text-gray-400 hover:text-white">
242
+ <i data-feather="instagram"></i>
243
+ </a>
244
+ </div>
245
+ <p class="mt-4 md:mt-0 text-gray-400 text-sm">
246
+ © 2023 PixelMotion Forge. All rights reserved.
247
+ </p>
248
+ </div>
249
+ </div>
250
+ </footer>
251
+
252
+ <script>
253
+ // Initialize Vanta.js background
254
+ VANTA.GLOBE({
255
+ el: "#vanta-bg",
256
+ mouseControls: true,
257
+ touchControls: true,
258
+ gyroControls: false,
259
+ minHeight: 200.00,
260
+ minWidth: 200.00,
261
+ scale: 1.00,
262
+ scaleMobile: 1.00,
263
+ color: 0x3b82f6,
264
+ backgroundColor: 0x111827
265
+ });
266
+
267
+ // Initialize feather icons
268
+ feather.replace();
269
+ </script>
270
+ </body>
271
  </html>