import { ArrowPathIcon, CloudArrowUpIcon, ServerIcon, ShieldCheckIcon, } from '@heroicons/react/24/outline' import { CP, CT, Eyebrow, H3, P } from '../../components/Texts' const features = [ { Eyebrow: 'DevOps / Cloud teams', name: 'Kubernetes Clusters', description: 'Deterministic K3s workloads across sovereign hardware.', icon: ServerIcon, }, { Eyebrow: 'Security & infrastructure', name: 'Encrypted Mesh Networking', description: 'No public ingress, no exposed attack surface, zero-trust routing.', icon: ShieldCheckIcon, }, { Eyebrow: 'Data-driven teams', name: 'S3-Compatible Storage', description: 'Distributed storage with erasure coding and residency control.', icon: CloudArrowUpIcon, }, { Eyebrow: 'AI / ML workloads', name: 'GPU-Ready', description: 'Scale inference & training on demand.', icon: ArrowPathIcon, }, ] export function CloudHosting() { return (
CAPABILITIES

What You Can Run on Mycelium Cloud

Turn your own machines into real, production-grade infrastructure. Mycelium handles the networking, orchestration, and security layers, so you can deploy services the same way you would on public cloud without giving your data or control to anyone.

{features.map((feature) => (
{feature.Eyebrow} {feature.name} {feature.description}
))}
) }