xmelox commited on
Commit
22604fd
·
verified ·
1 Parent(s): 00a97ef

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +311 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Quantumfield
3
- emoji: 💻
4
- colorFrom: yellow
5
- colorTo: yellow
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: quantumfield
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,311 @@
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>Quantum Field Timeline Shifter</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @keyframes quantumPulse {
11
+ 0%, 100% { box-shadow: 0 0 10px 2px rgba(101, 227, 255, 0.5); }
12
+ 50% { box-shadow: 0 0 20px 5px rgba(101, 227, 255, 0.8); }
13
+ }
14
+ .quantum-glow {
15
+ animation: quantumPulse 3s infinite;
16
+ }
17
+ .timeline-node::before {
18
+ content: '';
19
+ position: absolute;
20
+ top: 50%;
21
+ left: -15px;
22
+ width: 12px;
23
+ height: 12px;
24
+ background: #65e3ff;
25
+ border-radius: 50%;
26
+ transform: translateY(-50%);
27
+ box-shadow: 0 0 10px 3px rgba(101, 227, 255, 0.7);
28
+ }
29
+ .wave-pattern {
30
+ background:
31
+ radial-gradient(circle at 20% 30%, rgba(101, 227, 255, 0.1) 0%, transparent 20%),
32
+ radial-gradient(circle at 80% 70%, rgba(101, 227, 255, 0.1) 0%, transparent 20%);
33
+ }
34
+ .quantum-text {
35
+ background: linear-gradient(90deg, #65e3ff, #b388ff);
36
+ -webkit-background-clip: text;
37
+ background-clip: text;
38
+ color: transparent;
39
+ }
40
+ </style>
41
+ </head>
42
+ <body class="bg-black text-gray-200 min-h-screen wave-pattern">
43
+ <div class="container mx-auto px-4 py-8">
44
+ <!-- Header -->
45
+ <header class="text-center mb-12">
46
+ <h1 class="text-4xl md:text-6xl font-bold mb-4 quantum-text">Quantum Field Timeline Shifter</h1>
47
+ <p class="text-lg md:text-xl text-gray-400 max-w-3xl mx-auto">
48
+ Manipulate the quantum fabric of spacetime and navigate through alternate timelines with precision.
49
+ </p>
50
+ </header>
51
+
52
+ <!-- Main Interface -->
53
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
54
+ <!-- Timeline Visualization -->
55
+ <div class="lg:col-span-2 bg-gray-900 bg-opacity-70 rounded-xl p-6 border border-gray-800 quantum-glow">
56
+ <div class="flex justify-between items-center mb-6">
57
+ <h2 class="text-2xl font-semibold quantum-text">Timeline Stream</h2>
58
+ <div class="flex space-x-2">
59
+ <button class="bg-blue-900 bg-opacity-50 hover:bg-opacity-70 text-blue-200 px-3 py-1 rounded-lg text-sm transition">
60
+ <i class="fas fa-wave-square mr-1"></i> Waveform
61
+ </button>
62
+ <button class="bg-purple-900 bg-opacity-50 hover:bg-opacity-70 text-purple-200 px-3 py-1 rounded-lg text-sm transition">
63
+ <i class="fas fa-project-diagram mr-1"></i> Multiverse
64
+ </button>
65
+ </div>
66
+ </div>
67
+
68
+ <div class="relative h-64 md:h-80 bg-black rounded-lg overflow-hidden mb-6">
69
+ <div class="absolute inset-0 flex items-center justify-center">
70
+ <div class="w-full h-px bg-gray-700"></div>
71
+ </div>
72
+
73
+ <!-- Quantum Wave Animation -->
74
+ <div id="waveAnimation" class="absolute inset-0"></div>
75
+
76
+ <!-- Timeline Nodes -->
77
+ <div class="relative h-full">
78
+ <div class="absolute left-1/4 top-1/2 timeline-node pl-6">
79
+ <div class="bg-indigo-900 bg-opacity-60 p-3 rounded-lg border border-indigo-700">
80
+ <p class="text-xs text-indigo-200">Event Horizon</p>
81
+ <p class="text-sm font-medium">2023-07-15</p>
82
+ </div>
83
+ </div>
84
+ <div class="absolute left-1/2 top-1/3 timeline-node pl-6">
85
+ <div class="bg-blue-900 bg-opacity-60 p-3 rounded-lg border border-blue-700">
86
+ <p class="text-xs text-blue-200">Quantum Split</p>
87
+ <p class="text-sm font-medium">2025-11-22</p>
88
+ </div>
89
+ </div>
90
+ <div class="absolute left-3/4 top-2/3 timeline-node pl-6">
91
+ <div class="bg-purple-900 bg-opacity-60 p-3 rounded-lg border border-purple-700">
92
+ <p class="text-xs text-purple-200">Collapse Point</p>
93
+ <p class="text-sm font-medium">2028-04-07</p>
94
+ </div>
95
+ </div>
96
+ </div>
97
+ </div>
98
+
99
+ <div class="flex justify-between items-center">
100
+ <div class="text-sm text-gray-400">
101
+ <i class="fas fa-info-circle mr-1"></i> <span id="timelineStatus">Stable quantum synchronization</span>
102
+ </div>
103
+ <div class="flex space-x-2">
104
+ <button class="bg-gray-800 hover:bg-gray-700 px-3 py-1 rounded-lg text-sm transition">
105
+ <i class="fas fa-undo mr-1"></i> Reset
106
+ </button>
107
+ <button class="bg-green-900 hover:bg-green-800 text-green-200 px-3 py-1 rounded-lg text-sm transition">
108
+ <i class="fas fa-play mr-1"></i> Activate
109
+ </button>
110
+ </div>
111
+ </div>
112
+ </div>
113
+
114
+ <!-- Control Panel -->
115
+ <div class="bg-gray-900 bg-opacity-70 rounded-xl p-6 border border-gray-800">
116
+ <h2 class="text-2xl font-semibold quantum-text mb-6">Quantum Controls</h2>
117
+
118
+ <!-- Frequency Slider -->
119
+ <div class="mb-6">
120
+ <div class="flex justify-between mb-2">
121
+ <label class="text-sm font-medium text-gray-300">Field Frequency</label>
122
+ <span id="frequencyValue" class="text-sm text-blue-300">7.83Hz</span>
123
+ </div>
124
+ <input type="range" min="0.1" max="20" step="0.1" value="7.83"
125
+ class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer accent-blue-500"
126
+ id="frequencySlider">
127
+ <div class="flex justify-between text-xs text-gray-400 mt-1">
128
+ <span>Earth</span>
129
+ <span>Schumann</span>
130
+ <span>Theta</span>
131
+ <span>Gamma</span>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Dimension Selector -->
136
+ <div class="mb-6">
137
+ <label class="block text-sm font-medium text-gray-300 mb-2">Temporal Dimension</label>
138
+ <div class="grid grid-cols-3 gap-2">
139
+ <button class="bg-gray-800 hover:bg-blue-900 text-gray-300 py-2 rounded-lg transition text-xs">
140
+ 3D Linear
141
+ </button>
142
+ <button class="bg-blue-900 text-blue-200 py-2 rounded-lg transition text-xs">
143
+ 4D Temporal
144
+ </button>
145
+ <button class="bg-gray-800 hover:bg-purple-900 text-gray-300 py-2 rounded-lg transition text-xs">
146
+ 5D Quantum
147
+ </button>
148
+ </div>
149
+ </div>
150
+
151
+ <!-- Entanglement Matrix -->
152
+ <div class="mb-6">
153
+ <label class="block text-sm font-medium text-gray-300 mb-2">Entanglement Matrix</label>
154
+ <div class="grid grid-cols-3 gap-2">
155
+ <div class="bg-gray-800 h-10 rounded flex items-center justify-center cursor-pointer hover:bg-blue-900 transition">
156
+ <i class="fas fa-atom text-blue-300"></i>
157
+ </div>
158
+ <div class="bg-gray-800 h-10 rounded flex items-center justify-center cursor-pointer hover:bg-blue-900 transition">
159
+ <i class="fas fa-infinity text-blue-300"></i>
160
+ </div>
161
+ <div class="bg-gray-800 h-10 rounded flex items-center justify-center cursor-pointer hover:bg-blue-900 transition">
162
+ <i class="fas fa-vector-square text-blue-300"></i>
163
+ </div>
164
+ <div class="bg-gray-800 h-10 rounded flex items-center justify-center cursor-pointer hover:bg-blue-900 transition">
165
+ <i class="fas fa-spinner text-blue-300"></i>
166
+ </div>
167
+ <div class="bg-gray-800 h-10 rounded flex items-center justify-center cursor-pointer hover:bg-blue-900 transition">
168
+ <i class="fas fa-dna text-blue-300"></i>
169
+ </div>
170
+ <div class="bg-gray-800 h-10 rounded flex items-center justify-center cursor-pointer hover:bg-blue-900 transition">
171
+ <i class="fas fa-haykal text-blue-300"></i>
172
+ </div>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- Coordinates Input -->
177
+ <div class="mb-6">
178
+ <label class="block text-sm font-medium text-gray-300 mb-2">Quantum Coordinates</label>
179
+ <div class="flex space-x-2">
180
+ <input type="text" placeholder="X" class="bg-gray-800 border border-gray-700 rounded-lg px-3 py-2 text-sm w-1/3 focus:outline-none focus:ring-1 focus:ring-blue-500">
181
+ <input type="text" placeholder="Y" class="bg-gray-800 border border-gray-700 rounded-lg px-3 py-2 text-sm w-1/3 focus:outline-none focus:ring-1 focus:ring-blue-500">
182
+ <input type="text" placeholder="Z" class="bg-gray-800 border border-gray-700 rounded-lg px-3 py-2 text-sm w-1/3 focus:outline-none focus:ring-1 focus:ring-blue-500">
183
+ </div>
184
+ </div>
185
+
186
+ <!-- Shift Button -->
187
+ <button id="shiftButton" class="w-full py-3 bg-gradient-to-r from-blue-600 to-purple-600 rounded-lg font-medium text-white hover:opacity-90 transition flex items-center justify-center">
188
+ <i class="fas fa-bolt mr-2"></i> Initiate Quantum Shift
189
+ </button>
190
+ </div>
191
+ </div>
192
+
193
+ <!-- Quantum Console -->
194
+ <div class="mt-8 bg-gray-900 bg-opacity-70 rounded-xl p-6 border border-gray-800">
195
+ <div class="flex justify-between items-center mb-4">
196
+ <h2 class="text-xl font-semibold quantum-text">Quantum Console</h2>
197
+ <div class="flex space-x-2">
198
+ <button class="text-gray-400 hover:text-gray-200">
199
+ <i class="fas fa-terminal"></i>
200
+ </button>
201
+ <button class="text-gray-400 hover:text-gray-200">
202
+ <i class="fas fa-cog"></i>
203
+ </button>
204
+ </div>
205
+ </div>
206
+ <div class="bg-black rounded-lg p-4 font-mono text-sm h-40 overflow-y-auto" id="quantumConsole">
207
+ <p class="text-green-400">> Quantum field initialized...</p>
208
+ <p class="text-blue-400">> Scanning temporal dimensions...</p>
209
+ <p class="text-purple-400">> Found 7 stable timeline branches</p>
210
+ <p class="text-yellow-400">> Warning: Entanglement levels at 67%</p>
211
+ <p class="text-green-400">> Ready for quantum shift sequence</p>
212
+ </div>
213
+ </div>
214
+ </div>
215
+
216
+ <script>
217
+ // Quantum wave animation
218
+ function createWaveAnimation() {
219
+ const container = document.getElementById('waveAnimation');
220
+ container.innerHTML = '';
221
+
222
+ const canvas = document.createElement('canvas');
223
+ canvas.width = container.offsetWidth;
224
+ canvas.height = container.offsetHeight;
225
+ container.appendChild(canvas);
226
+
227
+ const ctx = canvas.getContext('2d');
228
+ let time = 0;
229
+
230
+ function draw() {
231
+ ctx.clearRect(0, 0, canvas.width, canvas.height);
232
+ ctx.strokeStyle = 'rgba(101, 227, 255, 0.3)';
233
+ ctx.lineWidth = 2;
234
+
235
+ const centerY = canvas.height / 2;
236
+ const amplitude = canvas.height / 4;
237
+ const frequency = 0.02;
238
+
239
+ ctx.beginPath();
240
+ for (let x = 0; x < canvas.width; x++) {
241
+ const y = centerY + amplitude * Math.sin(x * frequency + time);
242
+ if (x === 0) {
243
+ ctx.moveTo(x, y);
244
+ } else {
245
+ ctx.lineTo(x, y);
246
+ }
247
+ }
248
+ ctx.stroke();
249
+
250
+ time += 0.1;
251
+ requestAnimationFrame(draw);
252
+ }
253
+
254
+ draw();
255
+ }
256
+
257
+ // Frequency slider update
258
+ document.getElementById('frequencySlider').addEventListener('input', function() {
259
+ const value = parseFloat(this.value).toFixed(2);
260
+ document.getElementById('frequencyValue').textContent = value + 'Hz';
261
+
262
+ // Update status message based on frequency
263
+ const status = document.getElementById('timelineStatus');
264
+ if (value < 4) {
265
+ status.textContent = 'Delta wave synchronization';
266
+ status.className = 'text-indigo-300';
267
+ } else if (value < 8) {
268
+ status.textContent = 'Theta wave synchronization';
269
+ status.className = 'text-blue-300';
270
+ } else if (value < 13) {
271
+ status.textContent = 'Alpha wave synchronization';
272
+ status.className = 'text-green-300';
273
+ } else {
274
+ status.textContent = 'Beta wave synchronization';
275
+ status.className = 'text-yellow-300';
276
+ }
277
+ });
278
+
279
+ // Shift button effect
280
+ document.getElementById('shiftButton').addEventListener('click', function() {
281
+ const consoleOutput = document.getElementById('quantumConsole');
282
+ consoleOutput.innerHTML += '<p class="text-white">> Initiating quantum shift sequence...</p>';
283
+ consoleOutput.innerHTML += '<p class="text-purple-300">> Collapsing wave function...</p>';
284
+
285
+ setTimeout(() => {
286
+ consoleOutput.innerHTML += '<p class="text-blue-300">> Stabilizing quantum field...</p>';
287
+ consoleOutput.innerHTML += '<p class="text-green-400">> Timeline shift successful!</p>';
288
+ consoleOutput.scrollTop = consoleOutput.scrollHeight;
289
+
290
+ // Add pulse effect
291
+ this.classList.add('animate-pulse');
292
+ setTimeout(() => {
293
+ this.classList.remove('animate-pulse');
294
+ }, 1000);
295
+ }, 1500);
296
+
297
+ consoleOutput.scrollTop = consoleOutput.scrollHeight;
298
+ });
299
+
300
+ // Initialize on load
301
+ window.addEventListener('load', () => {
302
+ createWaveAnimation();
303
+
304
+ // Responsive adjustments
305
+ window.addEventListener('resize', () => {
306
+ createWaveAnimation();
307
+ });
308
+ });
309
+ </script>
310
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=xmelox/quantumfield" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
311
+ </html>