import { CircleBackground } from '../../components/CircleBackground' import { Container } from '../../components/Container' import { Eyebrow, SectionHeader, P, Small } from '../../components/Texts' const focusAreas = [ { label: 'Overview', title: 'Decentralized Kubernetes on the ThreeFold Grid', description: 'Mycelium Cloud provides a comprehensive platform for deploying and managing K3s clusters across global, sovereign infrastructure.', }, { label: 'Core Concept', title: 'Sovereign, self-managing operations', description: 'Deterministic networking, quantum-safe storage, and zero-image delivery keep every workload verifiable and autonomous from day zero.', }, { label: 'Developer Experience', title: 'K3s-native workflows with full control', description: 'Provision multi-master clusters, govern residency, and observe node health from a single programmable control plane.', }, ] export function CloudOverview() { return (
Platform Overview A decentralized cloud that operates itself.

Mycelium Cloud orchestrates Kubernetes clusters on the ThreeFold Grid with cryptographic certainty. Networking, storage, and orchestration are all built-in so developers can deploy critical workloads without wrestling infrastructure.

Declarative, sovereign, and ready for production workloads anywhere.

{focusAreas.map((item) => (
{item.label}
{item.title}

{item.description}

))}
) }