'use client'; import { Container } from '@/components/Container' import { Eyebrow, H3, P } from '@/components/Texts' import { Button } from '@/components/Button' const capabilities = [ { title: 'Containers & K3s', description: 'Deploy services, web apps, and APIs with full Kubernetes compatibility.', icon: (
Kubernetes
), }, { title: 'Virtual Machines', description: 'Run legacy apps and specialized stacks with secure boot and attestation.', icon: (
Virtual Machines
), }, { title: 'Native Linux Workloads', description: 'Execute agents, batch jobs, and custom tooling statelessly across the grid.', icon: (
Linux
), }, ] export function ComputeCapabilities() { return (
{/* Top horizontal spacer */}
{/* Boxed container */}
CAPABILITIES

What You Can Run

Mycelium Compute supports multiple workload types on a single execution fabric, from legacy VMs to modern Kubernetes clusters.

{/* Card layout */}
    {capabilities.map((capability) => (
  • {capability.icon}

    {capability.title}

    {capability.description}

  • ))}
{/* Button section */}
{/* Bottom border + spacer */}
) }