"use client"; import { Container } from '@/components/Container' import { Eyebrow, H3, P, Small } from '@/components/Texts' const useCases = [ { title: 'Enterprise & Private Kubernetes', description: 'Production-grade K3s clusters with full workload ownership and residency control. Deploy apps and internal services without vendor lock-in or exposed surfaces.', bullets: [ 'High availability + failover', 'Encrypted, mesh-native networking', 'Compliance-ready governance & policy control', ], }, { title: 'Edge & Distributed Deployments', description: 'Place compute close to where data is created. Run clusters globally across home labs, offices, data centers, or edge locations.', bullets: [ 'Low-latency execution', 'Mesh-routed connectivity', 'Autonomous healing across region', ], }, { title: 'AI / ML & Agent Workloads', description: 'Run inference, training, and autonomous AI systems on sovereign compute. GPU orchestration, private vector storage, and model execution without handing data to hyperscalers.', bullets: [ 'Scales across nodes', 'Supports open-source & fine-tuned models', 'Built for agentic automation + RAG', ], }, ] export function CloudUseCases() { return (
{/* ✅ Top horizontal line with spacing */}
{/* ✅ Inner boxed container */}
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.

{/* ✅ 3 columns on desktop */}
    {useCases.map((useCase) => (
  • {useCase.title}

    Scenario

    {useCase.description}

      {useCase.bullets.map((bullet) => (
    • {bullet}
    • ))}
  • ))}
{/* ✅ Bottom horizontal line + spacing */}
) }