diff --git a/src/pages/gpu/GpuArchitecture.tsx b/src/pages/gpu/GpuArchitecture.tsx index f66e325..3f46627 100644 --- a/src/pages/gpu/GpuArchitecture.tsx +++ b/src/pages/gpu/GpuArchitecture.tsx @@ -1,28 +1,18 @@ import { Container } from '../../components/Container' -import { Eyebrow, SectionHeader, P } from '../../components/Texts' +import { Eyebrow, SectionHeader } from '../../components/Texts' -const architectureSections = [ +const architecture = [ { - title: 'Distributed GPU Mesh', - description: - 'A peer-to-peer fabric connects GPU nodes across the ThreeFold Grid, exposing them through the Mycelium network.', - bullets: [ - 'GPU nodes distributed globally for on-demand acceleration.', - 'Mycelium network provides encrypted peer-to-peer connectivity.', - 'Smart contract orchestration allocates and governs resources.', - 'Real-time monitoring tracks utilization and health.', - ], + title: 'Sovereign Compute Nodes', + description: 'GPUs hosted on hardware you trust.', }, { - title: 'Performance Characteristics', - description: - 'Consistency and transparency are built into the fabric so workloads behave predictably anywhere on the planet.', - bullets: [ - 'Edge-to-core deployment flexibility for every workload profile.', - 'Adaptive intelligence optimizes allocation automatically.', - 'Deterministic performance guarantees availability when booked.', - 'Transparent cost tracking for every GPU cycle consumed.', - ], + title: 'Encrypted Mesh Networking', + description: 'Secure, private connectivity to workloads.', + }, + { + title: 'Reservation & Verification Layer', + description: 'Guarantees GPU access and consistency.', }, ] @@ -31,41 +21,24 @@ export function GpuArchitecture() {
- - Technical Architecture - + ARCHITECTURE - A peer-to-peer mesh purpose-built for acceleration. + HOW IT WORKS -

- Mycelium GPU treats every node as part of a sovereign mesh. Encrypted - networking, smart contract orchestration, and transparent monitoring - ensure your workloads receive precisely the power they request. -

-
- {architectureSections.map((section) => ( + +
+ {architecture.map((item) => (

- {section.title} + {item.title}

-

- {section.description} +

+ {item.description}

-
    - {section.bullets.map((bullet) => ( -
  • - - {bullet} -
  • - ))} -
))}
diff --git a/src/pages/gpu/GpuCapabilities.tsx b/src/pages/gpu/GpuCapabilities.tsx index 3b4f671..b8d8419 100644 --- a/src/pages/gpu/GpuCapabilities.tsx +++ b/src/pages/gpu/GpuCapabilities.tsx @@ -37,10 +37,6 @@ export function GpuCapabilities() {
CAPABILITIES

What You Can Run on Mycelium Cloud

-

- GPU workloads can run anywhere on the mesh — on cloud capacity, your own machines, - or edge nodes — with full sovereignty. -

diff --git a/src/pages/gpu/GpuDesign.tsx b/src/pages/gpu/GpuDesign.tsx index 2f1dc10..3ea531f 100644 --- a/src/pages/gpu/GpuDesign.tsx +++ b/src/pages/gpu/GpuDesign.tsx @@ -34,10 +34,7 @@ export function GpuDesign() {
CORE VALUE

GPU Power You Actually Control

-

- Mycelium GPU gives you access to real hardware, not gated queues or - proprietary runtimes. -

+
{/* Key Benefits */} diff --git a/src/pages/network/Hero.tsx b/src/pages/network/Hero.tsx index c47df50..66310fd 100644 --- a/src/pages/network/Hero.tsx +++ b/src/pages/network/Hero.tsx @@ -82,15 +82,23 @@ export function Hero() { Mycelium Network

- Unleashing the Power of Decentralized Networks + Encrypted Peer-to-Peer Connectivity Across the Globe

- Discover Mycelium, an end-to-end encrypted IPv6 overlay network. The future of secure, efficient, and scalable networking. + Mycelium Network provides an unbreakable sovereign IPv6 mesh that connects people, nodes, and applications directly, with no central servers. +

+

+ Works Alone. Works Together. + Mycelium Network can be used standalone, or together with Mycelium Cloud + for full-stack sovereignty.

+
diff --git a/src/pages/network/NetworkCapabilities.tsx b/src/pages/network/NetworkCapabilities.tsx new file mode 100644 index 0000000..b392d31 --- /dev/null +++ b/src/pages/network/NetworkCapabilities.tsx @@ -0,0 +1,65 @@ +import { + LockClosedIcon, + GlobeAltIcon, + ArrowPathRoundedSquareIcon, + NoSymbolIcon, +} from '@heroicons/react/24/solid' +import { Container } from '../../components/Container' +import { Eyebrow, H3, P, CT, CP } from '../../components/Texts' + +const capabilities = [ + { + name: 'End-to-End Encrypted Mesh', + description: 'Every packet is encrypted and routed peer-to-peer.', + icon: LockClosedIcon, + }, + { + name: 'Global IPv6 Address Space', + description: 'Every node, app, and service gets its own private address.', + icon: GlobeAltIcon, + }, + { + name: 'Self-Healing Routing', + description: 'Traffic automatically finds the fastest, most resilient path.', + icon: ArrowPathRoundedSquareIcon, + }, + { + name: 'No Central Control', + description: 'No servers to trust, no middlemen, no corporate choke-points.', + icon: NoSymbolIcon, + }, +] + +export function NetworkCapabilities() { + return ( +
+ +
+ WHAT IT ENABLES +

+ A Private Networking Layer for Everything You Run +

+

+ Mycelium Network is the backbone for secure, autonomous connectivity + across devices, data centers, clusters, and self-hosted environments, + anywhere in the world. +

+
+ +
+
+ {capabilities.map((item) => ( +
+
+
+ {item.name} + {item.description} +
+ ))} +
+
+
+
+ ) +} diff --git a/src/pages/storage/StorageCapabilities.tsx b/src/pages/storage/StorageCapabilities.tsx index 00969a5..ebb2c3a 100644 --- a/src/pages/storage/StorageCapabilities.tsx +++ b/src/pages/storage/StorageCapabilities.tsx @@ -39,10 +39,6 @@ export function StorageCapabilities() {

What You Can Use Mycelium Storage For

-

- A decentralized storage layer built for sovereign workloads — secure, - flexible, and globally addressable. -