diff --git a/client/pages/ResearchLabs.tsx b/client/pages/ResearchLabs.tsx index 043a7c8e..4b1374e0 100644 --- a/client/pages/ResearchLabs.tsx +++ b/client/pages/ResearchLabs.tsx @@ -1,4 +1,3 @@ -import { useState, useEffect, useRef } from "react"; import Layout from "@/components/Layout"; import { Button } from "@/components/ui/button"; import { @@ -13,484 +12,527 @@ import LoadingScreen from "@/components/LoadingScreen"; import { aethexToast } from "@/lib/aethex-toast"; import { Link } from "react-router-dom"; import { - Zap, + ArrowRight, + Beaker, Brain, - Atom, + CheckCircle, Cpu, Database, - Shield, - Rocket, - ArrowRight, - CheckCircle, - Eye, Download, ExternalLink, - Beaker, + Eye, Microscope, + Shield, + Zap, } from "lucide-react"; +import { useEffect, useRef, useState } from "react"; + +type Directive = { + title: string; + codename: string; + summary: string; + status: "Exploratory" | "Operational" | "In Testing" | "Stealth"; + command: string; + output: string[]; + link: string; +}; + +type Facility = { + name: string; + location: string; + equipment: string[]; + capacity: string; + status: "Operational" | "Scaling" | "Prototype"; + link: string; +}; + +type Transmission = { + headline: string; + description: string; + category: string; + priority: "High" | "Medium" | "Critical"; + link: string; +}; + +const directives: Directive[] = [ + { + title: "Project CHIMERA", + codename: "Synthetic Cognition", + summary: + "Fusion of quantum-inspired architectures with autonomous design heuristics for adaptive content generation.", + status: "Operational", + command: "$ run status --project=chimera", + output: [ + "[SYSTEM] Quantum nodes linked", + "[I/O] Creativity gradient stable at 0.97", + "[SECURITY] Containment protocols verified", + ], + link: "https://labs.aethex.biz/projects/chimera", + }, + { + title: "Project ENIGMA", + codename: "Neural Defense", + summary: + "Real-time anomaly detection fabric with on-device heuristics hardened for hostile simulation environments.", + status: "In Testing", + command: "$ run status --project=enigma", + output: [ + "[BUILD] Secure enclave compiled", + "[TELEMETRY] Latency delta: -38%", + "[FLAG] Adversarial fingerprints neutralised", + ], + link: "https://labs.aethex.biz/projects/enigma", + }, + { + title: "Project GENESIS", + codename: "Distributed Worlds", + summary: + "Composable metaverse tooling that stitches persistent realms with live player-authored logic streams.", + status: "Exploratory", + command: "$ run status --project=genesis", + output: [ + "[SIM] Multi-realm handshake accepted", + "[GRAPH] Temporal mesh integrity: 99.2%", + "[NEXT] Requesting narrative assets", + ], + link: "https://labs.aethex.biz/projects/genesis", + }, +]; + +const facilities: Facility[] = [ + { + name: "Signal Processing Bay", + location: "Deck 03 · Node West", + equipment: [ + "GPU swarm (A100 x32)", + "Photonic inference cores", + "Adaptive RF shield array", + ], + capacity: "12 researchers", + status: "Operational", + link: "https://labs.aethex.biz/facilities/signal-bay", + }, + { + name: "Quantum Prototyping Wing", + location: "Deck 07 · Core Atrium", + equipment: [ + "Superconducting qubit stack", + "Cryogenic vacuum chambers", + "Stabilised frequency lattice", + ], + capacity: "9 researchers", + status: "Scaling", + link: "https://labs.aethex.biz/facilities/quantum-wing", + }, + { + name: "Defense Simulation Hub", + location: "Deck 05 · South Array", + equipment: [ + "Adversarial scenario engine", + "Distributed threat sandbox", + "Neural trace visualisers", + ], + capacity: "15 researchers", + status: "Prototype", + link: "https://labs.aethex.biz/facilities/defense-hub", + }, +]; + +const transmissions: Transmission[] = [ + { + headline: "Zero-latency voxel streaming achieved", + description: + "Joint deployment between Labs mainframe and AeThex Forge cut render latency by 63% across 11 test regions.", + category: "Breakthrough", + priority: "High", + link: "https://labs.aethex.biz/updates/voxel-streaming", + }, + { + headline: "Neural defense telemetry sync online", + description: + "Edge devices now receive live threat heuristics every 4.7 seconds via Labs relay with autonomous fallback.", + category: "Deployment", + priority: "Critical", + link: "https://labs.aethex.biz/updates/neural-defense", + }, + { + headline: "Genesis Realm Editor private preview", + description: + "Closed group of 120 creators mapping persistent storylines with distributed logic patches in real time.", + category: "Programs", + priority: "Medium", + link: "https://labs.aethex.biz/updates/genesis-preview", + }, +]; export default function ResearchLabs() { const [isLoading, setIsLoading] = useState(true); - const toastShownRef = useRef(false); useEffect(() => { const timer = setTimeout(() => { setIsLoading(false); if (!toastShownRef.current) { - aethexToast.system("Research & Labs division accessed"); + aethexToast.system("Labs mainframe linked"); toastShownRef.current = true; } - }, 1000); + }, 900); return () => clearTimeout(timer); }, []); - const researchAreas = [ - { - title: "Quantum Computing", - description: "Advancing quantum algorithms for real-world applications", - icon: Atom, - status: "Active Research", - papers: 12, - breakthrough: "Quantum ML optimization algorithm", - impact: "50% faster training", - color: "from-purple-500 to-indigo-600", - }, - { - title: "Neural Architecture Search", - description: "Automated discovery of optimal neural network designs", - icon: Brain, - status: "Production Ready", - papers: 8, - breakthrough: "AutoML framework", - impact: "90% accuracy improvement", - color: "from-blue-500 to-cyan-600", - }, - { - title: "Edge AI Systems", - description: "Deploying AI models on resource-constrained devices", - icon: Cpu, - status: "Beta Testing", - papers: 6, - breakthrough: "Model compression technique", - impact: "10x smaller models", - color: "from-green-500 to-emerald-600", - }, - { - title: "Blockchain Security", - description: - "Next-generation consensus algorithms and smart contract security", - icon: Shield, - status: "Research Phase", - papers: 4, - breakthrough: "Zero-knowledge protocols", - impact: "Enhanced privacy", - color: "from-orange-500 to-red-600", - }, - ]; - - const publications = [ - { - title: "Quantum-Enhanced Machine Learning for Game AI", - authors: "Dr. Sarah Chen, Dr. Marcus Zhang", - journal: "Nature Quantum Information", - year: "2024", - citations: 127, - type: "Peer Reviewed", - impact: "High", - }, - { - title: - "Efficient Neural Architecture Search Using Evolutionary Algorithms", - authors: "Dr. Aisha Patel, Dr. John Liu", - journal: "International Conference on Machine Learning", - year: "2024", - citations: 89, - type: "Conference", - impact: "Medium", - }, - { - title: "Edge Computing Framework for Real-time Game Analytics", - authors: "Dr. Michael Chen, Dr. Lisa Wong", - journal: "IEEE Transactions on Computers", - year: "2023", - citations: 156, - type: "Peer Reviewed", - impact: "High", - }, - ]; - - const labs = [ - { - name: "Quantum AI Lab", - location: "Building A, Floor 3", - equipment: [ - "IBM Quantum System", - "Superconducting Qubits", - "Cryogenic Systems", - ], - capacity: "12 researchers", - status: "Operational", - }, - { - name: "Neural Networks Lab", - location: "Building B, Floor 2", - equipment: ["GPU Clusters", "TPU Arrays", "High-Memory Systems"], - capacity: "20 researchers", - status: "Operational", - }, - { - name: "Blockchain Security Lab", - location: "Building C, Floor 1", - equipment: [ - "Security Testing Rigs", - "Network Simulators", - "Hardware Wallets", - ], - capacity: "8 researchers", - status: "Expanding", - }, - ]; - if (isLoading) { return ( ); } return ( -
- {/* Hero Section */} -
-
- {[...Array(30)].map((_, i) => ( -
- {"⚛️🧠🔬⚡".charAt(Math.floor(Math.random() * 4))} -
- ))} -
+
+
+
-
-
- - - Research & Experimental Division - - -

- AeThex | L.A.B.S. -

- -

- Pushing the boundaries of technology through cutting-edge - research and breakthrough discoveries that shape the future of - digital innovation. -

- -
- + + Research & Development Uplink + + +

+ AeThex | L.A.B.S. Interface +

+ +

+ Real-time window into the AeThex Labs mainframe. Monitor directives, facilities, and transmissions as they propagate + through the network. +

+ +
+ + + +
+
+
+
+ +
+
+
+
+

+ Core Directives +

+

+ Programmes sourced from the Labs backbone. Tap into live status feeds and request extended dossiers directly from + the Labs archive. +

+
+ +
+ +
+ {directives.map((directive) => ( + + +
+ + {directive.title} + + + {directive.status} + +
+ + {directive.codename} + +

{directive.summary}

+
+ +
+
{directive.command}
+
+ {directive.output.map((line) => ( +
+ {line} +
+ ))} +
+
+ +
+
+ ))} +
+
+
+ +
+
+
+
+

+ Labs Transmissions +

+

+ Broadcasts directly from Labs operations. Filtered for Research & Development stakeholders across AeThex networks. +

+
-
-
- - {/* Research Areas */} -
-
-
-

- Active Research Areas -

-

- Exploring frontiers in quantum computing, AI, and emerging - technologies -

-
- -
- {researchAreas.map((area, index) => { - const Icon = area.icon; - return ( +
+ {transmissions.map((transmission) => ( - -
-
- -
-
-
- - {area.title} - - - {area.status} - -
- - {area.description} - + +
+
+ {transmission.category} + + {transmission.priority} Priority +
+

+ {transmission.headline} +

+

+ {transmission.description} +

- - -
-
-
- {area.papers} -
-
- Publications -
-
-
-
- {area.breakthrough} -
-
- {area.impact} -
-
+
+ + +
- ); - })} + ))} +
-
-
+ - {/* Publications */} -
-
-
-

- Recent Publications -

-

- Our latest research contributions to the scientific community -

-
+
+
+
+

+ Research Facilities Network +

+

+ Physical infrastructure tethered to Labs for rapid prototyping, cyber defense simulations, and quantum-grade production. +

+
-
- {publications.map((pub, index) => ( - - -
-
-

- {pub.title} -

-

- {pub.authors} -

-

- {pub.journal} • {pub.year} -

-
-
- - {pub.impact} Impact +
+ {facilities.map((facility) => ( + + +
+ + {facility.name} + + + {facility.status} - {pub.type}
-
-
-
- Citations:{" "} - - {pub.citations} - + + {facility.location} + + + +
+

Equipment Loadout

+
+ {facility.equipment.map((item) => ( +
+ + {item} +
+ ))} +
-
- - +
+ Capacity: {facility.capacity}
-
-
- - ))} -
-
-
- - {/* Lab Facilities */} -
-
-
-

- Research Facilities -

-

- State-of-the-art laboratories equipped with cutting-edge - technology -

-
- -
- {labs.map((lab, index) => ( - - -
- {lab.name} - - {lab.status} - -
- {lab.location} -
- -
-

Equipment:

-
- {lab.equipment.map((item, itemIndex) => ( -
- - {item} -
- ))} -
-
-
- Capacity:{" "} - {lab.capacity} -
-
-
- ))} -
-
-
- - {/* CTA Section */} -
-
-
-

- Join Our Research Community -

-

- Collaborate with world-class researchers and contribute to - breakthrough discoveries that will shape the future of - technology. -

- -
- - + + Inspect Facility + + + + + + ))}
+
+
-
-
- -

Open Data

-

- Research datasets -

+
+
+
+

+ Sync With AeThex Labs +

+

+ Join the private Labs console for priority access to directives, research packets, and sandbox environments crafted by the + Research & Development collective. +

+
+ +
-
- -

Collaborations

-

- University partnerships -

-
-
- -

Innovation

-

- Breakthrough research -

+
+
+ +

Secure Relay

+

+ Labs transmissions are signed and checksum verified every 90 seconds. +

+
+
+ +

Adaptive Compute

+

+ Elastic compute mesh auto-balances workloads across Forge and Labs infrastructure. +

+
+
+ +

Rapid Experimentation

+

+ Prototype, validate, and deploy concepts with Labs-grade toolchains in under 24 hours. +

+
+
+ + +
+
+ Labs uplink stabilised · All sectors synced +
+
);