devmgllc commited on
Commit
67dda51
·
verified ·
1 Parent(s): 111756a

lets create a section that serves as an interative roadmap and documented journey to accomplish the goal essentially creating a whitepaper and roadmap that would allow other collaborators and partners to follow along the process

Browse files
Files changed (1) hide show
  1. index.html +208 -6
index.html CHANGED
@@ -46,10 +46,11 @@
46
  <div class="hidden md:flex space-x-8">
47
  <a href="#mission" class="hover:text-cyan-300 transition-colors duration-300">Mission</a>
48
  <a href="#journey" class="hover:text-cyan-300 transition-colors duration-300">Journey</a>
 
49
  <a href="#collaborate" class="hover:text-cyan-300 transition-colors duration-300">Collaborate</a>
50
  <a href="#contact" class="hover:text-cyan-300 transition-colors duration-300">Contact</a>
51
  </div>
52
- <button class="md:hidden">
53
  <i data-feather="menu"></i>
54
  </button>
55
  </div>
@@ -156,10 +157,185 @@
156
  </div>
157
  </div>
158
  </section>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
 
160
  <!-- Collaboration Section -->
161
  <section id="collaborate" class="relative z-10 py-20 px-4 lg:px-8">
162
- <div class="max-w-4xl mx-auto text-center">
163
  <h2 class="text-4xl font-['Orbitron'] font-bold mb-6">Join the Quantum Revolution</h2>
164
  <p class="text-xl text-gray-300 mb-8 leading-relaxed">
165
  The path to quantum encryption excellence requires collective intelligence.
@@ -255,16 +431,42 @@
255
  }
256
  });
257
  });
258
-
259
- // Initialize animations
260
  document.addEventListener('DOMContentLoaded', function() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  // Animate elements on scroll
262
  const observerOptions = {
263
  threshold: 0.1,
264
  rootMargin: '0px 0px -50px 0px'
265
  };
266
-
267
- const observer = new IntersectionObserver((entries) => {
268
  entries.forEach(entry => {
269
  if (entry.isIntersecting) {
270
  entry.target.style.opacity = '1';
 
46
  <div class="hidden md:flex space-x-8">
47
  <a href="#mission" class="hover:text-cyan-300 transition-colors duration-300">Mission</a>
48
  <a href="#journey" class="hover:text-cyan-300 transition-colors duration-300">Journey</a>
49
+ <a href="#roadmap" class="hover:text-cyan-300 transition-colors duration-300">Roadmap</a>
50
  <a href="#collaborate" class="hover:text-cyan-300 transition-colors duration-300">Collaborate</a>
51
  <a href="#contact" class="hover:text-cyan-300 transition-colors duration-300">Contact</a>
52
  </div>
53
+ <button class="md:hidden">
54
  <i data-feather="menu"></i>
55
  </button>
56
  </div>
 
157
  </div>
158
  </div>
159
  </section>
160
+ <!-- Roadmap Section -->
161
+ <section id="roadmap" class="relative z-10 py-20 px-4 lg:px-8 bg-gradient-to-b from-black/80 to-gray-900/80">
162
+ <div class="max-w-6xl mx-auto">
163
+ <h2 class="text-4xl font-['Orbitron'] font-bold mb-4 text-center">Quantum Encryption Roadmap</h2>
164
+ <p class="text-xl text-gray-300 mb-12 text-center max-w-3xl mx-auto">
165
+ A living document tracking our progress toward establishing a global quantum encryption standard.
166
+ This interactive roadmap allows collaborators to follow our journey and contribute to specific milestones.
167
+ </p>
168
+
169
+ <!-- Timeline Navigation -->
170
+ <div class="flex justify-center mb-12">
171
+ <div class="inline-flex rounded-lg border border-gray-700 bg-gray-900/50 p-1">
172
+ <button class="roadmap-tab px-4 py-2 rounded-md text-cyan-400 bg-cyan-900/30 font-['Orbitron'] text-sm tracking-wider" data-phase="phase1">
173
+ Phase 1: Foundation
174
+ </button>
175
+ <button class="roadmap-tab px-4 py-2 rounded-md text-gray-400 hover:text-cyan-300 transition-colors" data-phase="phase2">
176
+ Phase 2: Protocol Dev
177
+ </button>
178
+ <button class="roadmap-tab px-4 py-2 rounded-md text-gray-400 hover:text-cyan-300 transition-colors" data-phase="phase3">
179
+ Phase 3: Implementation
180
+ </button>
181
+ <button class="roadmap-tab px-4 py-2 rounded-md text-gray-400 hover:text-cyan-300 transition-colors" data-phase="phase4">
182
+ Phase 4: Standardization
183
+ </button>
184
+ </div>
185
+ </div>
186
+
187
+ <!-- Roadmap Content -->
188
+ <div class="grid lg:grid-cols-2 gap-12">
189
+ <!-- Current Phase -->
190
+ <div class="space-y-8">
191
+ <div class="bg-gradient-to-br from-cyan-900/20 to-blue-900/20 border border-cyan-500/30 rounded-2xl p-8">
192
+ <div class="flex items-center justify-between mb-6">
193
+ <h3 class="text-2xl font-['Orbitron']">Current Phase: Foundation Research</h3>
194
+ <span class="px-3 py-1 bg-cyan-500/20 text-cyan-300 rounded-full text-sm font-['Orbitron'] tracking-wider">ACTIVE</span>
195
+ </div>
196
+
197
+ <!-- Progress -->
198
+ <div class="mb-6">
199
+ <div class="flex justify-between text-sm text-gray-400 mb-2">
200
+ <span>Overall Progress</span>
201
+ <span>25%</span>
202
+ </div>
203
+ <div class="w-full bg-gray-700 rounded-full h-2">
204
+ <div class="bg-gradient-to-r from-cyan-500 to-blue-500 h-2 rounded-full" style="width: 25%"></div>
205
+ </div>
206
+
207
+ <!-- Current Milestones -->
208
+ <div class="space-y-4">
209
+ <div class="flex items-center space-x-3 p-3 bg-black/50 rounded-lg border-l-4 border-cyan-500">
210
+ <i data-feather="check-circle" class="w-5 h-5 text-green-400"></i>
211
+ <div>
212
+ <h4 class="font-['Orbitron'] text-sm">Quantum Mechanics Research</h4>
213
+ <p class="text-xs text-gray-400">Completed foundational quantum entanglement studies</p>
214
+ </div>
215
+ </div>
216
+ <div class="flex items-center space-x-3 p-3 bg-black/50 rounded-lg border-l-4 border-cyan-500">
217
+ <i data-feather="check-circle" class="w-5 h-5 text-green-400"></i>
218
+ <div>
219
+ <h4 class="font-['Orbitron'] text-sm">Cryptography Analysis</h4>
220
+ <p class="text-xs text-gray-400">Analyzed current encryption vulnerabilities</p>
221
+ </div>
222
+ </div>
223
+ <div class="flex items-center space-x-3 p-3 bg-cyan-900/20 rounded-lg border-l-4 border-cyan-400">
224
+ <i data-feather="play-circle" class="w-5 h-5 text-cyan-400"></i>
225
+ <div>
226
+ <h4 class="font-['Orbitron'] text-sm">Entanglement Protocol Design</h4>
227
+ <p class="text-xs text-gray-400">Developing quantum key distribution framework</p>
228
+ </div>
229
+ </div>
230
+ </div>
231
+ </div>
232
+
233
+ <!-- Whitepaper Download -->
234
+ <div class="bg-gradient-to-br from-purple-900/20 to-pink-900/20 border border-purple-500/30 rounded-2xl p-8 text-center">
235
+ <i data-feather="file-text" class="w-12 h-12 mx-auto mb-4 text-purple-400"></i>
236
+ <h3 class="font-['Orbitron'] mb-2">Technical Whitepaper</h3>
237
+ <p class="text-sm text-gray-400 mb-4">Download our comprehensive research document</p>
238
+ <button class="px-6 py-3 bg-gradient-to-r from-purple-600 to-pink-600 rounded-lg font-['Orbitron'] text-sm tracking-wider hover:scale-105 transition-transform duration-300">
239
+ DOWNLOAD WHITEPAPER
240
+ </button>
241
+ </div>
242
+ </div>
243
+
244
+ <!-- Timeline Visualization -->
245
+ <div class="space-y-8">
246
+ <div class="bg-gradient-to-br from-gray-900 to-black border border-gray-700 rounded-2xl p-8">
247
+ <h3 class="text-2xl font-['Orbitron'] mb-6">Project Timeline</h3>
248
+
249
+ <!-- Timeline -->
250
+ <div class="space-y-6">
251
+ <!-- Phase 1 -->
252
+ <div class="flex items-start space-x-4">
253
+ <div class="flex flex-col items-center">
254
+ <div class="w-4 h-4 bg-cyan-400 rounded-full"></div>
255
+ <div class="w-0.5 h-20 bg-gradient-to-b from-cyan-400 to-purple-400"></div>
256
+ </div>
257
+ <div>
258
+ <h4 class="font-['Orbitron'] text-cyan-400">Q1 2024 - Foundation Research</h4>
259
+ <p class="text-sm text-gray-400 mt-1">Quantum mechanics study & cryptographic analysis</p>
260
+ <div class="flex items-center space-x-2 mt-2">
261
+ <span class="px-2 py-1 bg-cyan-500/20 text-cyan-300 rounded text-xs">IN PROGRESS</span>
262
+ </div>
263
+ </div>
264
+
265
+ <!-- Phase 2 -->
266
+ <div class="flex items-start space-x-4">
267
+ <div class="flex flex-col items-center">
268
+ <div class="w-4 h-4 bg-purple-400 rounded-full"></div>
269
+ <div class="w-0.5 h-20 bg-gradient-to-b from-purple-400 to-blue-400"></div>
270
+ </div>
271
+ <div>
272
+ <h4 class="font-['Orbitron'] text-purple-400">Q2 2024 - Protocol Development</h4>
273
+ <p class="text-sm text-gray-400 mt-1">Quantum encryption protocol design & simulation</p>
274
+ </div>
275
+ </div>
276
+
277
+ <!-- Phase 3 -->
278
+ <div class="flex items-start space-x-4">
279
+ <div class="flex flex-col items-center">
280
+ <div class="w-4 h-4 bg-blue-400 rounded-full opacity-50"></div>
281
+ <div class="w-0.5 h-20 bg-gradient-to-b from-blue-400 to-gray-400"></div>
282
+ </div>
283
+ <div>
284
+ <h4 class="font-['Orbitron'] text-blue-400 opacity-50">Q3 2024 - Implementation</h4>
285
+ <p class="text-sm text-gray-400 mt-1 opacity-50">Hardware integration & real-world testing</p>
286
+ </div>
287
+ </div>
288
+
289
+ <!-- Phase 4 -->
290
+ <div class="flex items-start space-x-4">
291
+ <div class="flex flex-col items-center">
292
+ <div class="w-4 h-4 bg-gray-400 rounded-full opacity-30"></div>
293
+ </div>
294
+ <div>
295
+ <h4 class="font-['Orbitron'] text-gray-400 opacity-30">Q4 2024 - Standardization</h4>
296
+ <p class="text-sm text-gray-400 mt-1 opacity-30">Global protocol adoption & certification</p>
297
+ </div>
298
+ </div>
299
+ </div>
300
+ </div>
301
+ </div>
302
+
303
+ <!-- Research Updates -->
304
+ <div class="mt-16">
305
+ <h3 class="text-3xl font-['Orbitron'] font-bold mb-8 text-center">Latest Research Updates</h3>
306
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
307
+ <div class="bg-gradient-to-br from-gray-900 to-black border border-gray-700 rounded-xl p-6">
308
+ <div class="w-10 h-10 bg-green-500/20 rounded-lg flex items-center justify-center mb-4">
309
+ <i data-feather="check" class="w-5 h-5 text-green-400"></i>
310
+ </div>
311
+ <h4 class="font-['Orbitron'] mb-2">Quantum Entanglement Verified</h4>
312
+ <p class="text-sm text-gray-400 mb-4">Successfully demonstrated quantum entanglement principles in controlled environment</p>
313
+ <span class="text-xs text-gray-500">Posted: Jan 15, 2024</span>
314
+ </div>
315
+ <div class="bg-gradient-to-br from-gray-900 to-black border border-gray-700 rounded-xl p-6">
316
+ <div class="w-10 h-10 bg-cyan-500/20 rounded-lg flex items-center justify-center mb-4">
317
+ <i data-feather="activity" class="w-5 h-5 text-cyan-400"></i>
318
+ </div>
319
+ <h4 class="font-['Orbitron'] mb-2">Protocol Architecture</h4>
320
+ <p class="text-sm text-gray-400 mb-4">Initial quantum key distribution framework designed</p>
321
+ <span class="text-xs text-gray-500">Posted: Feb 3, 2024</span>
322
+ </div>
323
+ <div class="bg-gradient-to-br from-gray-900 to-black border border-gray-700 rounded-xl p-6">
324
+ <div class="w-10 h-10 bg-yellow-500/20 rounded-lg flex items-center justify-center mb-4">
325
+ <i data-feather="clock" class="w-5 h-5 text-yellow-400"></i>
326
+ </div>
327
+ <h4 class="font-['Orbitron'] mb-2">Research Partnerships</h4>
328
+ <p class="text-sm text-gray-400 mb-4">Establishing collaboration with quantum research labs</p>
329
+ <span class="text-xs text-gray-500">Posted: Mar 1, 2024</span>
330
+ </div>
331
+ </div>
332
+ </div>
333
+ </div>
334
+ </section>
335
 
336
  <!-- Collaboration Section -->
337
  <section id="collaborate" class="relative z-10 py-20 px-4 lg:px-8">
338
+ <div class="max-w-4xl mx-auto text-center">
339
  <h2 class="text-4xl font-['Orbitron'] font-bold mb-6">Join the Quantum Revolution</h2>
340
  <p class="text-xl text-gray-300 mb-8 leading-relaxed">
341
  The path to quantum encryption excellence requires collective intelligence.
 
431
  }
432
  });
433
  });
434
+ // Roadmap Tab Functionality
 
435
  document.addEventListener('DOMContentLoaded', function() {
436
+ const roadmapTabs = document.querySelectorAll('.roadmap-tab');
437
+ const roadmapPhases = document.querySelectorAll('.roadmap-phase');
438
+
439
+ roadmapTabs.forEach(tab => {
440
+ tab.addEventListener('click', function() {
441
+ const phase = this.getAttribute('data-phase');
442
+
443
+ // Update active tab
444
+ roadmapTabs.forEach(t => {
445
+ t.classList.remove('text-cyan-400', 'bg-cyan-900/30');
446
+ t.classList.add('text-gray-400');
447
+ });
448
+
449
+ this.classList.remove('text-gray-400');
450
+ this.classList.add('text-cyan-400', 'bg-cyan-900/30');
451
+
452
+ // Show corresponding phase content
453
+ roadmapPhases.forEach(p => {
454
+ p.classList.add('hidden');
455
+ });
456
+
457
+ const activePhase = document.querySelector(`[data-phase-content="${phase}"]`);
458
+ if (activePhase) {
459
+ activePhase.classList.remove('hidden');
460
+ }
461
+ });
462
+ });
463
+
464
  // Animate elements on scroll
465
  const observerOptions = {
466
  threshold: 0.1,
467
  rootMargin: '0px 0px -50px 0px'
468
  };
469
+ const observer = new IntersectionObserver((entries) => {
 
470
  entries.forEach(entry => {
471
  if (entry.isIntersecting) {
472
  entry.target.style.opacity = '1';