forked from iErcann/NotBlox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
482 lines (429 loc) · 11.2 KB
/
index.html
File metadata and controls
482 lines (429 loc) · 11.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NotBlox — BlackRoad OS</title>
<meta name="description" content="3D multiplayer game built with Three.js. Open-world creation, real-time collaboration, and a voxel-based building system that runs in any browser.">
<style>
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #0a0a0a;
--card: #131313;
--border: #1a1a1a;
--text: #e0e0e0;
--text-dim: #888;
--text-bright: #fff;
--pink: #ff1d6c;
--amber: #f5a623;
--blue: #2979ff;
--violet: #9c27b0;
--green: #4caf50;
--gradient: linear-gradient(90deg, #ff1d6c, #f5a623, #2979ff, #9c27b0);
}
body {
background: var(--bg);
color: var(--text);
font-family: 'Inter', -apple-system, sans-serif;
line-height: 1.6;
min-height: 100vh;
}
.gradient-bar {
height: 2px;
background: var(--gradient);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
}
nav {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.5rem 2rem;
max-width: 1200px;
margin: 0 auto;
border-bottom: 1px solid var(--border);
}
.nav-left {
display: flex;
align-items: center;
gap: 1rem;
}
.spectrum-mark {
width: 32px;
height: 32px;
border-radius: 8px;
background: var(--gradient);
position: relative;
}
.spectrum-mark::after {
content: '';
position: absolute;
inset: 2px;
border-radius: 6px;
background: var(--bg);
}
.nav-title {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
font-size: 1.1rem;
color: var(--text-bright);
}
.nav-links {
display: flex;
gap: 1.5rem;
list-style: none;
}
.nav-links a {
color: var(--text-dim);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-bright); }
.hero {
max-width: 1200px;
margin: 0 auto;
padding: 6rem 2rem 4rem;
text-align: center;
}
.hero-badge {
display: inline-block;
padding: 0.35rem 1rem;
border: 1px solid var(--border);
border-radius: 100px;
font-size: 0.8rem;
color: var(--text-dim);
margin-bottom: 2rem;
font-family: 'JetBrains Mono', monospace;
}
.hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: clamp(2.5rem, 6vw, 4rem);
font-weight: 700;
color: var(--text-bright);
line-height: 1.1;
margin-bottom: 1.5rem;
}
.hero-tagline {
font-size: 1.5rem;
color: var(--text-dim);
margin-bottom: 1rem;
font-family: 'Space Grotesk', sans-serif;
}
.hero p {
font-size: 1.15rem;
color: var(--text-dim);
max-width: 640px;
margin: 0 auto 2.5rem;
line-height: 1.7;
}
.hero-why {
max-width: 700px;
margin: 0 auto;
padding: 1.5rem 2rem;
background: var(--card);
border: 1px solid var(--border);
border-radius: 12px;
text-align: left;
}
.hero-why h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 0.9rem;
color: var(--amber);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 0.5rem;
}
.hero-why p {
font-size: 0.95rem;
color: var(--text);
margin: 0;
max-width: none;
}
.section {
max-width: 1200px;
margin: 0 auto;
padding: 4rem 2rem;
}
.section-title {
font-family: 'Space Grotesk', sans-serif;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-dim);
margin-bottom: 2rem;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.25rem;
}
.feature-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.75rem;
transition: border-color 0.2s;
}
.feature-card:hover {
border-color: #2a2a2a;
}
.feature-icon {
width: 40px;
height: 40px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
margin-bottom: 1rem;
border: 1px solid var(--border);
background: var(--bg);
}
.feature-card h3 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
font-size: 1.05rem;
color: var(--text-bright);
margin-bottom: 0.5rem;
}
.feature-card p {
font-size: 0.9rem;
color: var(--text-dim);
line-height: 1.6;
}
.integration {
max-width: 1200px;
margin: 0 auto;
padding: 4rem 2rem;
}
.integration-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 2.5rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}
@media (max-width: 768px) {
.integration-card { grid-template-columns: 1fr; gap: 2rem; }
}
.integration-info h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.5rem;
color: var(--text-bright);
margin-bottom: 1rem;
}
.integration-info p {
color: var(--text-dim);
font-size: 0.95rem;
line-height: 1.7;
margin-bottom: 1.5rem;
}
.integration-meta {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.meta-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1rem;
background: var(--bg);
border: 1px solid var(--border);
border-radius: 8px;
}
.meta-label {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
color: var(--text-dim);
text-transform: uppercase;
min-width: 60px;
}
.meta-value {
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
color: var(--text-bright);
}
.integration-diagram {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.diagram-node {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem 1.25rem;
background: var(--bg);
border: 1px solid var(--border);
border-radius: 8px;
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
}
.diagram-dot {
width: 8px;
height: 8px;
border-radius: 50%;
flex-shrink: 0;
}
.diagram-dot.pink { background: var(--pink); }
.diagram-dot.amber { background: var(--amber); }
.diagram-dot.blue { background: var(--blue); }
.diagram-dot.green { background: var(--green); }
.diagram-connector {
width: 1px;
height: 16px;
background: var(--border);
margin-left: 1.6rem;
}
footer {
max-width: 1200px;
margin: 0 auto;
padding: 3rem 2rem;
border-top: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 1rem;
}
.footer-brand {
font-family: 'Space Grotesk', sans-serif;
font-size: 0.9rem;
color: var(--text-dim);
}
.footer-links {
display: flex;
gap: 1.5rem;
list-style: none;
}
.footer-links a {
color: var(--text-dim);
text-decoration: none;
font-size: 0.85rem;
transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-bright); }
</style>
</head>
<body>
<div class="gradient-bar"></div>
<nav>
<div class="nav-left">
<div class="spectrum-mark"></div>
<span class="nav-title">NotBlox</span>
</div>
<ul class="nav-links">
<li><a href="#features">Features</a></li>
<li><a href="#integration">Integration</a></li>
<li><a href="https://blackroad.io">BlackRoad OS</a></li>
<li><a href="https://github.com/blackboxprogramming/NotBlox">GitHub</a></li>
</ul>
</nav>
<section class="hero">
<div class="hero-badge">BlackRoad OS Fork</div>
<h1>NotBlox</h1>
<p class="hero-tagline">Build worlds together.</p>
<p>3D multiplayer game built with Three.js. Open-world creation, real-time collaboration, and a voxel-based building system that runs in any browser.</p>
<div class="hero-why">
<h3>Why BlackRoad Forked This</h3>
<p>BlackRoad is building the metaverse from the ground up. NotBlox provides the 3D multiplayer foundation — real-time world building, player interaction, and a creation toolkit that runs on sovereign infrastructure instead of corporate game servers.</p>
</div>
</section>
<section class="section" id="features">
<div class="section-title">What Makes This Fork Special</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">◆</div>
<h3>Three.js Renderer</h3>
<p>WebGL-powered 3D engine that runs in any modern browser. No downloads, no plugins, no app store.</p>
</div>
<div class="feature-card">
<div class="feature-icon">◊</div>
<h3>Multiplayer</h3>
<p>Real-time multiplayer with WebSocket synchronization. Build together, explore together.</p>
</div>
<div class="feature-card">
<div class="feature-icon">■</div>
<h3>Voxel Building</h3>
<p>Place, remove, and paint voxel blocks to build structures, landscapes, and entire worlds.</p>
</div>
<div class="feature-card">
<div class="feature-icon">▶</div>
<h3>Physics Engine</h3>
<p>Rigid body physics for realistic interaction. Gravity, collisions, and player movement.</p>
</div>
<div class="feature-card">
<div class="feature-icon">▲</div>
<h3>World Persistence</h3>
<p>Worlds save to the server and persist between sessions. Come back to what you built.</p>
</div>
<div class="feature-card">
<div class="feature-icon">▼</div>
<h3>Modding API</h3>
<p>JavaScript API for custom game logic, NPCs, and interactive objects.</p>
</div>
</div>
</section>
<section class="integration" id="integration">
<div class="section-title">BlackRoad OS Integration</div>
<div class="integration-card">
<div class="integration-info">
<h2>Part of the Fleet</h2>
<p>NotBlox runs on Lucidia as part of the BlackRoad metaverse. Worlds persist to PostgreSQL on Alice, multiplayer traffic routes through the WireGuard mesh, and the Pixel HQ office connects to NotBlox for 3D meeting spaces.</p>
<div class="integration-meta">
<div class="meta-item">
<span class="meta-label">Node</span>
<span class="meta-value">Lucidia (.38)</span>
</div>
<div class="meta-item">
<span class="meta-label">Agent</span>
<span class="meta-value">World Builder</span>
</div>
<div class="meta-item">
<span class="meta-label">Port</span>
<span class="meta-value">:3000</span>
</div>
</div>
</div>
<div class="integration-diagram">
<div class="diagram-node">
<div class="diagram-dot pink"></div>
<span>NotBlox</span>
</div>
<div class="diagram-connector"></div>
<div class="diagram-node">
<div class="diagram-dot amber"></div>
<span>BlackRoad Agent Mesh</span>
</div>
<div class="diagram-connector"></div>
<div class="diagram-node">
<div class="diagram-dot blue"></div>
<span>Lucidia (.38) (Pi Fleet)</span>
</div>
<div class="diagram-connector"></div>
<div class="diagram-node">
<div class="diagram-dot green"></div>
<span>blackroad.io</span>
</div>
</div>
</div>
</section>
<footer>
<span class="footer-brand">© 2025-2026 BlackRoad OS, Inc. — Pave Tomorrow.</span>
<ul class="footer-links">
<li><a href="https://blackroad.io">Home</a></li>
<li><a href="https://github.com/BlackRoad-OS-Inc">GitHub</a></li>
<li><a href="https://hq.blackroad.io">HQ</a></li>
</ul>
</footer>
</body>
</html>