import { Container } from '../../components/Container' import { Eyebrow, H3, P } from '../../components/Texts' import { Button } from '../../components/Button' const architecture = [ { title: 'Mesh Networking Layer', description: 'Every node receives a cryptographic network identity and secure routing path.', }, { title: 'Sovereign Compute Layer', description: 'Workloads run on hardware you authorize, no shared control, no exposed surfaces.', }, { title: 'Deterministic Orchestration', description: 'K3s clusters deploy predictably, verifiably, and remain drift-free.', }, ] export function CloudArchitecture() { return (
ARCHITECTURE

How Mycelium Cloud Works

Mycelium Cloud runs Kubernetes on a global encrypted mesh, with identity, routing, and state verified at the protocol level.

{architecture.map((layer) => (

{layer.title}

{layer.description}

))}
) }