import { Container } from '../../components/Container' import { Eyebrow, H3, P } from '../../components/Texts' const architectureSections = [ { title: 'Decentralized Infrastructure', description: 'Clusters launch across the ThreeFold Grid with direct node access and encrypted connectivity.', bullets: [ 'Unique Mycelium IP addresses assigned to every node.', 'Peer-to-peer mesh networking links services across nodes.', 'End-to-end encryption keeps traffic sealed inside the fabric.', 'No public IP exposure—everything is addressable via Mycelium IPs.', ], }, { title: 'Network Flow', description: 'Traffic moves through the Mycelium mesh, maintaining sovereignty without sacrificing reach.', bullets: [ 'User requests enter through the encrypted Mycelium network.', 'Traffic routes directly to cluster nodes without intermediate hops.', 'Services answer over the same mesh—no ingress controller required.', 'Operational visibility without exposing public attack surface.', ], }, { title: 'Kubernetes Management', description: 'Lightweight K3s orchestration delivers HA clusters with automated lifecycle management.', bullets: [ 'Full K3s deployment and lifecycle management built-in.', 'IPv6-native networking ensures deterministic service discovery.', 'Multi-master topologies with automatic failover for resilience.', 'Drift-free upgrades orchestrated through smart contracts.', ], }, ] export function CloudArchitecture() { return (
Technical Architecture

Built on a Sovereign, Encrypted Delivery Mesh.

Mycelium Cloud rides on the ThreeFold Grid, pairing encrypted mesh networking with deterministic K3s orchestration. Every layer is designed to keep workloads sovereign, observable, and effortless to operate.

{architectureSections.map((section) => (

{section.title}

{section.description}

    {section.bullets.map((bullet) => (
  • {bullet}
  • ))}
))}
) }