retire commited on
Commit
00cd7ca
·
verified ·
1 Parent(s): 37447d5

REDESING THE WHOLE WEBSITE ON THE PROMPT :

Browse files

In a world rapidly approaching the edge of technological singularity,
your challenge is to design and develop a website that envisions how
technology will shape the future of our universe. Whether it’s space
colonization, AI-driven civilizations, interplanetary communication,
quantum-powered societies, or climate-reversing tech — your site
should act as a portal into tomorrow

Files changed (1) hide show
  1. singularity.html +422 -0
singularity.html ADDED
@@ -0,0 +1,422 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Singularity Horizon | Portal to Post-Human Future</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/three@0.132.2/build/three.min.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/three@0.132.2/examples/js/controls/OrbitControls.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/animejs@3.2.1/lib/anime.min.js"></script>
12
+ <style>
13
+ @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Major+Mono+Display&display=swap');
14
+
15
+ :root {
16
+ --quantum-blue: #00f0ff;
17
+ --singularity-purple: #9d00ff;
18
+ --cosmic-black: #0a0a1a;
19
+ --starlight: #f0f0ff;
20
+ }
21
+
22
+ body {
23
+ font-family: 'Orbitron', sans-serif;
24
+ background-color: var(--cosmic-black);
25
+ color: var(--starlight);
26
+ overflow-x: hidden;
27
+ }
28
+
29
+ .portal-glow {
30
+ text-shadow: 0 0 10px var(--quantum-blue),
31
+ 0 0 20px var(--quantum-blue),
32
+ 0 0 30px var(--singularity-purple);
33
+ }
34
+
35
+ .quantum-border {
36
+ border: 1px solid var(--quantum-blue);
37
+ box-shadow: 0 0 15px var(--quantum-blue),
38
+ inset 0 0 10px var(--quantum-blue);
39
+ }
40
+
41
+ .singularity-border {
42
+ border: 1px solid var(--singularity-purple);
43
+ box-shadow: 0 0 15px var(--singularity-purple),
44
+ inset 0 0 10px var(--singularity-purple);
45
+ }
46
+
47
+ .portal-bg {
48
+ background: radial-gradient(circle at center,
49
+ rgba(0,240,255,0.1) 0%,
50
+ rgba(157,0,255,0.05) 50%,
51
+ transparent 80%);
52
+ }
53
+
54
+ @keyframes quantum-pulse {
55
+ 0%, 100% { opacity: 0.8; }
56
+ 50% { opacity: 1; }
57
+ }
58
+
59
+ .quantum-pulse {
60
+ animation: quantum-pulse 3s infinite;
61
+ }
62
+
63
+ #universe-canvas {
64
+ position: fixed;
65
+ top: 0;
66
+ left: 0;
67
+ z-index: -1;
68
+ }
69
+ </style>
70
+ </head>
71
+ <body>
72
+ <canvas id="universe-canvas"></canvas>
73
+
74
+ <!-- Singularity Navigation -->
75
+ <nav class="fixed w-full py-6 px-8 z-50 backdrop-blur-md bg-black/50">
76
+ <div class="flex justify-between items-center">
77
+ <div class="portal-glow text-2xl font-bold flex items-center">
78
+ <div class="w-6 h-6 rounded-full bg-gradient-to-br from-blue-500 to-purple-600 mr-3 quantum-pulse"></div>
79
+ SINGULARITY_HORIZON [v2.4]
80
+ </div>
81
+ <div class="hidden md:flex space-x-8">
82
+ <a href="#manifest" class="text-lg uppercase tracking-wider hover:text-blue-400 transition-colors">MANIFEST</a>
83
+ <a href="#simulations" class="text-lg uppercase tracking-wider hover:text-purple-400 transition-colors">SIMULATIONS</a>
84
+ <a href="#civilizations" class="text-lg uppercase tracking-wider hover:text-blue-400 transition-colors">CIVILIZATIONS</a>
85
+ <a href="#archive" class="text-lg uppercase tracking-wider hover:text-purple-400 transition-colors">ARCHIVE</a>
86
+ <a href="#join" class="px-6 py-2 bg-gradient-to-r from-blue-600 to-purple-600 rounded-full text-white hover:opacity-90 transition-all">JOIN</a>
87
+ </div>
88
+ <button class="md:hidden" id="mobile-menu-button">
89
+ <i data-feather="menu" class="w-8 h-8 text-blue-400"></i>
90
+ </button>
91
+ </div>
92
+ </nav>
93
+
94
+ <!-- Quantum Portal -->
95
+ <section class="min-h-screen flex items-center justify-center pt-20 px-8">
96
+ <div class="text-center max-w-6xl">
97
+ <h1 class="text-5xl md:text-8xl font-bold mb-8 portal-glow">
98
+ <span class="text-blue-400">QUANTUM</span>
99
+ <span class="text-purple-400">PORTAL</span>
100
+ </h1>
101
+ <p class="text-xl md:text-2xl mb-12 max-w-4xl mx-auto">
102
+ [ACCESSING FUTURE_DATABASE] - Visualizing post-singularity civilization models from 2045-2150
103
+ </p>
104
+ <div class="flex flex-col sm:flex-row justify-center gap-6">
105
+ <a href="#manifest" class="px-8 py-4 bg-black/50 quantum-border rounded-lg text-xl uppercase tracking-wider hover:bg-blue-900/30 transition-all">
106
+ ENTER PORTAL
107
+ </a>
108
+ <a href="#simulations" class="px-8 py-4 bg-black/50 singularity-border rounded-lg text-xl uppercase tracking-wider hover:bg-purple-900/30 transition-all">
109
+ RUN SIMULATIONS
110
+ </a>
111
+ </div>
112
+ </div>
113
+ </section>
114
+
115
+ <!-- Manifest Section -->
116
+ <section id="manifest" class="py-20 px-8 portal-bg">
117
+ <div class="max-w-6xl mx-auto">
118
+ <h2 class="text-3xl md:text-5xl font-bold mb-12 text-center portal-glow">
119
+ <span class="text-blue-400">SINGULARITY</span>
120
+ <span class="text-purple-400">MANIFEST</span>
121
+ </h2>
122
+
123
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
124
+ <div class="bg-black/50 p-8 rounded-lg quantum-border transition-all hover:scale-105">
125
+ <h3 class="text-2xl font-bold mb-4 text-blue-400">POST-HUMAN EVOLUTION</h3>
126
+ <p class="mb-6">Digital consciousness transfer allowing humans to transcend biological limits and explore the universe as pure information.</p>
127
+ <div class="h-40 bg-gradient-to-b from-blue-900 to-transparent rounded-lg flex items-center justify-center">
128
+ <i data-feather="cpu" class="w-12 h-12 text-blue-400"></i>
129
+ </div>
130
+ </div>
131
+
132
+ <div class="bg-black/50 p-8 rounded-lg singularity-border transition-all hover:scale-105">
133
+ <h3 class="text-2xl font-bold mb-4 text-purple-400">DYSON SPHERE NETWORK</h3>
134
+ <p class="mb-6">Harnessing stellar energy through quantum collectors to power post-singularity civilizations across the galaxy.</p>
135
+ <div class="h-40 bg-gradient-to-b from-purple-900 to-transparent rounded-lg flex items-center justify-center">
136
+ <i data-feather="sun" class="w-12 h-12 text-purple-400"></i>
137
+ </div>
138
+ </div>
139
+
140
+ <div class="bg-black/50 p-8 rounded-lg quantum-border transition-all hover:scale-105">
141
+ <h3 class="text-2xl font-bold mb-4 text-blue-400">CLIMATE REVERSAL</h3>
142
+ <p class="mb-6">Planetary-scale engineering deploying atmospheric nanobots to restore Earth's climate to pre-industrial levels.</p>
143
+ <div class="h-40 bg-gradient-to-b from-blue-900 to-transparent rounded-lg flex items-center justify-center">
144
+ <i data-feather="wind" class="w-12 h-12 text-blue-400"></i>
145
+ </div>
146
+ </div>
147
+ </div>
148
+ </div>
149
+ </section>
150
+
151
+ <!-- Future Simulations -->
152
+ <section id="simulations" class="py-20 px-8">
153
+ <div class="max-w-6xl mx-auto">
154
+ <h2 class="text-3xl md:text-5xl font-bold mb-12 text-center portal-glow">
155
+ <span class="text-purple-400">QUANTUM</span>
156
+ <span class="text-blue-400">SIMULATIONS</span>
157
+ </h2>
158
+
159
+ <div class="bg-black/50 rounded-lg p-8 singularity-border">
160
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
161
+ <div>
162
+ <h3 class="text-2xl font-bold mb-4 text-purple-400">CIVILIZATION EVOLUTION MODEL</h3>
163
+ <p class="mb-6">Run simulations of post-singularity societal structures using our quantum computing cluster.</p>
164
+ <div class="mb-8">
165
+ <div class="flex justify-between text-sm mb-2">
166
+ <span>Kardashev Scale</span>
167
+ <span>2.7</span>
168
+ </div>
169
+ <div class="w-full bg-gray-800 rounded-full h-2">
170
+ <div class="bg-gradient-to-r from-purple-500 to-blue-500 h-2 rounded-full" style="width: 67%"></div>
171
+ </div>
172
+ </div>
173
+ <a href="#" class="px-6 py-3 bg-gradient-to-r from-purple-600 to-blue-600 rounded-lg inline-block hover:opacity-90 transition-all">
174
+ RUN SIMULATION
175
+ </a>
176
+ </div>
177
+ <div>
178
+ <img src="http://static.photos/technology/1024x576/10" alt="Quantum Simulation" class="rounded-lg w-full h-auto">
179
+ </div>
180
+ </div>
181
+ </div>
182
+ </div>
183
+ </section>
184
+
185
+ <!-- Civilization Archives -->
186
+ <section id="civilizations" class="py-20 px-8 portal-bg">
187
+ <div class="max-w-6xl mx-auto">
188
+ <h2 class="text-3xl md:text-5xl font-bold mb-12 text-center portal-glow">
189
+ <span class="text-blue-400">POST-HUMAN</span>
190
+ <span class="text-purple-400">CIVILIZATIONS</span>
191
+ </h2>
192
+
193
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
194
+ <div class="bg-black/50 rounded-lg overflow-hidden quantum-border transition-all hover:scale-[1.02]">
195
+ <img src="http://static.photos/space/640x360/20" alt="Mars Colony" class="w-full h-48 object-cover">
196
+ <div class="p-6">
197
+ <h3 class="text-xl font-bold mb-2 text-blue-400">MARTIAN SYNTHETIC ECOLOGY</h3>
198
+ <p class="text-sm mb-4">Year 2078: First self-sustaining biome on Mars using genetically engineered plants.</p>
199
+ <div class="flex justify-between text-xs">
200
+ <span class="text-purple-400">Kardashev 1.2</span>
201
+ <span>Population: 250K</span>
202
+ </div>
203
+ </div>
204
+ </div>
205
+
206
+ <div class="bg-black/50 rounded-lg overflow-hidden singularity-border transition-all hover:scale-[1.02]">
207
+ <img src="http://static.photos/space/640x360/21" alt="Orbital City" class="w-full h-48 object-cover">
208
+ <div class="p-6">
209
+ <h3 class="text-xl font-bold mb-2 text-purple-400">ORBITAL MEGACITIES</h3>
210
+ <p class="text-sm mb-4">Year 2095: Rotating space habitats housing millions in Earth's orbit.</p>
211
+ <div class="flex justify-between text-xs">
212
+ <span class="text-blue-400">Kardashev 1.8</span>
213
+ <span>Population: 4.2M</span>
214
+ </div>
215
+ </div>
216
+ </div>
217
+
218
+ <div class="bg-black/50 rounded-lg overflow-hidden quantum-border transition-all hover:scale-[1.02]">
219
+ <img src="http://static.photos/space/640x360/22" alt="AI Civilization" class="w-full h-48 object-cover">
220
+ <div class="p-6">
221
+ <h3 class="text-xl font-bold mb-2 text-blue-400">DIGITAL CONSCIOUSNESS NETWORK</h3>
222
+ <p class="text-sm mb-4">Year 2112: First civilization of uploaded minds in quantum computing substrate.</p>
223
+ <div class="flex justify-between text-xs">
224
+ <span class="text-purple-400">Kardashev 2.3</span>
225
+ <span>Population: 18M</span>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ </div>
230
+ </div>
231
+ </section>
232
+
233
+ <!-- Join Section -->
234
+ <section id="join" class="py-20 px-8">
235
+ <div class="max-w-4xl mx-auto text-center">
236
+ <h2 class="text-3xl md:text-5xl font-bold mb-8 portal-glow">
237
+ <span class="text-purple-400">CONTRIBUTE</span>
238
+ <span class="text-blue-400">TO TOMORROW</span>
239
+ </h2>
240
+
241
+ <div class="bg-black/50 rounded-lg p-8 quantum-border">
242
+ <h3 class="text-2xl font-bold mb-6 text-blue-400">JOIN THE SINGULARITY HORIZON NETWORK</h3>
243
+ <p class="mb-8">Submit your vision of future civilization models for quantum simulation and archival.</p>
244
+
245
+ <form class="grid grid-cols-1 md:grid-cols-2 gap-6">
246
+ <input type="text" placeholder="NAME" class="bg-black/30 border border-blue-400 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500">
247
+ <input type="email" placeholder="QUANTUM_LINK" class="bg-black/30 border border-purple-400 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-purple-500">
248
+ <select class="bg-black/30 border border-blue-400 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500">
249
+ <option>SELECT CIVILIZATION TYPE</option>
250
+ <option>Planetary Engineering</option>
251
+ <option>Orbital Habitats</option>
252
+ <option>Digital Consciousness</option>
253
+ <option>Dyson Technology</option>
254
+ </select>
255
+ <input type="text" placeholder="KARDASHEV SCALE" class="bg-black/30 border border-purple-400 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-purple-500">
256
+ <div class="md:col-span-2">
257
+ <textarea placeholder="CIVILIZATION DESCRIPTION" rows="4" class="w-full bg-black/30 border border-blue-400 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
258
+ </div>
259
+ <button type="submit" class="md:col-span-2 px-8 py-4 bg-gradient-to-r from-blue-600 to-purple-600 rounded-lg text-xl uppercase tracking-wider hover:opacity-90 transition-all">
260
+ SUBMIT TO FUTURE ARCHIVE
261
+ </button>
262
+ </form>
263
+ </div>
264
+ </div>
265
+ </section>
266
+
267
+ <!-- Footer -->
268
+ <footer class="py-12 px-8 bg-black/80">
269
+ <div class="max-w-6xl mx-auto">
270
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
271
+ <div>
272
+ <h4 class="text-lg font-bold mb-4 text-blue-400">SINGULARITY HORIZON</h4>
273
+ <p class="text-sm">Envisioning and building the post-human future through quantum simulations.</p>
274
+ </div>
275
+ <div>
276
+ <h4 class="text-lg font-bold mb-4 text-purple-400">ARCHIVES</h4>
277
+ <ul class="space-y-2">
278
+ <li><a href="#" class="text-sm hover:text-blue-400 transition-colors">Civilization Models</a></li>
279
+ <li><a href="#" class="text-sm hover:text-blue-400 transition-colors">Quantum Simulations</a></li>
280
+ <li><a href="#" class="text-sm hover:text-blue-400 transition-colors">Future Tech</a></li>
281
+ </ul>
282
+ </div>
283
+ <div>
284
+ <h4 class="text-lg font-bold mb-4 text-blue-400">NETWORK</h4>
285
+ <ul class="space-y-2">
286
+ <li><a href="#" class="text-sm hover:text-purple-400 transition-colors">Contributors</a></li>
287
+ <li><a href="#" class="text-sm hover:text-purple-400 transition-colors">Research Partners</a></li>
288
+ <li><a href="#" class="text-sm hover:text-purple-400 transition-colors">Quantum Nodes</a></li>
289
+ </ul>
290
+ </div>
291
+ <div>
292
+ <h4 class="text-lg font-bold mb-4 text-purple-400">CONNECT</h4>
293
+ <div class="flex space-x-4">
294
+ <a href="#" class="text-blue-400 hover:text-white transition-colors"><i data-feather="github"></i></a>
295
+ <a href="#" class="text-purple-400 hover:text-white transition-colors"><i data-feather="twitter"></i></a>
296
+ <a href="#" class="text-blue-400 hover:text-white transition-colors"><i data-feather="linkedin"></i></a>
297
+ <a href="#" class="text-purple-400 hover:text-white transition-colors"><i data-feather="mail"></i></a>
298
+ </div>
299
+ </div>
300
+ </div>
301
+ <div class="border-t border-gray-800 mt-12 pt-8 text-center">
302
+ <p class="text-xs">
303
+ © 2157 Singularity Horizon | Quantum Timeframe Simulation Network
304
+ </p>
305
+ </div>
306
+ </div>
307
+ </footer>
308
+
309
+ <script>
310
+ // Initialize Three.js universe
311
+ let scene, camera, renderer, stars = [];
312
+
313
+ function initUniverse() {
314
+ scene = new THREE.Scene();
315
+ camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
316
+ renderer = new THREE.WebGLRenderer({
317
+ canvas: document.getElementById('universe-canvas'),
318
+ antialias: true
319
+ });
320
+ renderer.setSize(window.innerWidth, window.innerHeight);
321
+
322
+ // Create stars
323
+ for (let i = 0; i < 1000; i++) {
324
+ const star = new THREE.Mesh(
325
+ new THREE.SphereGeometry(0.1, 8, 8),
326
+ new THREE.MeshBasicMaterial({
327
+ color: Math.random() > 0.5 ? 0x00f0ff : 0x9d00ff,
328
+ transparent: true,
329
+ opacity: 0.8
330
+ })
331
+ );
332
+
333
+ star.position.x = (Math.random() - 0.5) * 2000;
334
+ star.position.y = (Math.random() - 0.5) * 2000;
335
+ star.position.z = (Math.random() - 0.5) * 2000;
336
+
337
+ stars.push(star);
338
+ scene.add(star);
339
+ }
340
+
341
+ // Add central glow
342
+ const glow = new THREE.Mesh(
343
+ new THREE.SphereGeometry(30, 32, 32),
344
+ new THREE.MeshBasicMaterial({
345
+ color: 0x9d00ff,
346
+ transparent: true,
347
+ opacity: 0.1
348
+ })
349
+ );
350
+ scene.add(glow);
351
+
352
+ // Position camera
353
+ camera.position.z = 100;
354
+
355
+ // Handle window resize
356
+ window.addEventListener('resize', () => {
357
+ camera.aspect = window.innerWidth / window.innerHeight;
358
+ camera.updateProjectionMatrix();
359
+ renderer.setSize(window.innerWidth, window.innerHeight);
360
+ });
361
+
362
+ // Start animation
363
+ animate();
364
+ }
365
+
366
+ function animate() {
367
+ requestAnimationFrame(animate);
368
+
369
+ // Rotate stars slightly
370
+ stars.forEach(star => {
371
+ star.rotation.x += 0.001;
372
+ star.rotation.y += 0.001;
373
+ });
374
+
375
+ // Move camera in gentle motion
376
+ const time = Date.now() * 0.0005;
377
+ camera.position.x = Math.sin(time) * 30;
378
+ camera.position.y = Math.cos(time * 0.5) * 20;
379
+ camera.lookAt(0, 0, 0);
380
+
381
+ renderer.render(scene, camera);
382
+ }
383
+
384
+ // Initialize everything when DOM is loaded
385
+ document.addEventListener('DOMContentLoaded', function() {
386
+ initUniverse();
387
+ feather.replace();
388
+
389
+ // Mobile menu toggle
390
+ document.getElementById('mobile-menu-button').addEventListener('click', function() {
391
+ const menu = document.getElementById('mobile-menu');
392
+ menu.classList.toggle('hidden');
393
+ });
394
+
395
+ // Smooth scrolling
396
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
397
+ anchor.addEventListener('click', function(e) {
398
+ e.preventDefault();
399
+ const target = document.querySelector(this.getAttribute('href'));
400
+ if (target) {
401
+ target.scrollIntoView({ behavior: 'smooth' });
402
+ }
403
+ });
404
+ });
405
+
406
+ // Add hover effects to interactive elements
407
+ document.querySelectorAll('.quantum-border, .singularity-border').forEach(el => {
408
+ el.addEventListener('mouseenter', function() {
409
+ this.style.boxShadow = this.classList.contains('quantum-border')
410
+ ? '0 0 25px var(--quantum-blue), inset 0 0 15px var(--quantum-blue)'
411
+ : '0 0 25px var(--singularity-purple), inset 0 0 15px var(--singularity-purple)';
412
+ });
413
+ el.addEventListener('mouseleave', function() {
414
+ this.style.boxShadow = this.classList.contains('quantum-border')
415
+ ? '0 0 15px var(--quantum-blue), inset 0 0 10px var(--quantum-blue)'
416
+ : '0 0 15px var(--singularity-purple), inset 0 0 10px var(--singularity-purple)';
417
+ });
418
+ });
419
+ });
420
+ </script>
421
+ </body>
422
+ </html>