import { ArrowPathIcon, CloudArrowUpIcon, ServerIcon, ShieldCheckIcon, } from '@heroicons/react/24/outline' import { CP, CT, Eyebrow, H3 } 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

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