import { CpuChipIcon, CubeIcon, ServerIcon, } from '@heroicons/react/24/solid' import { Eyebrow, H3, P, CT, CP } from '../../components/Texts' import { Container } from '../../components/Container' const capabilities = [ { name: 'Containers', description: 'Services, web apps, APIs. Fully compatible with Kubernetes.', icon: CubeIcon, }, { name: 'Virtual Machines', description: 'Legacy apps and specialized runtime stacks. Secure boot + attestation included.', icon: ServerIcon, }, { name: 'Native Linux Workloads', description: 'Agents, batch jobs, tooling. Runs statelessly anywhere.', icon: CpuChipIcon, }, ] export function ComputeCapabilities() { return (
CAPABILITIES

What You Can Run

Mycelium Compute supports multiple workload types on a single execution fabric.

{capabilities.map((feature) => (
{feature.name} {feature.description}
))}
) }