import { Container } from '../../components/Container' import { Eyebrow, SectionHeader, P, Small } from '../../components/Texts' const useCases = [ { title: 'AI / ML Training', description: 'Run GPU-accelerated workloads for deep learning, data science, and inference on demand.', bullets: ['GPU acceleration', 'Scalable compute', 'Cost optimization'], }, { title: 'Enterprise Kubernetes', description: 'Operate production-grade clusters with complete control and no vendor lock-in.', bullets: ['High availability', 'Security', 'Compliance'], }, { title: 'Edge & IoT', description: 'Leverage global nodes for low-latency workloads and connected device deployments.', bullets: ['Low latency', 'Global distribution', 'Real-time processing'], }, { title: 'DigitalMe Blueprint', description: 'Launch a full digital workspace on Mycelium Cloud with pre-integrated services.', bullets: [ 'Cryptpad • Encrypted collaboration', 'Elements • Matrix chat', 'Stallwart • Mail, calendar, contacts', 'Gitea • Git hosting', 'Nextcloud • File storage and sync', 'LiveKit / Jitsi • Real-time video', 'Single Sign-On backed by Gitea', ], }, ] export function CloudUseCases() { return (
Use Cases Built for intelligent workloads across every edge.

Mycelium Cloud unifies compute, storage, and networking so teams can launch anything from GPU inference farms to global collaboration suites with deterministic outcomes.

{useCases.map((useCase) => (

{useCase.title}

Scenario

{useCase.description}

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