import { AdjustmentsHorizontalIcon, GlobeAltIcon, BanknotesIcon, } from '@heroicons/react/24/outline' import { Container } from '@/components/Container' import { Eyebrow, SectionHeader, P } from '@/components/Texts' const coreFeatures = [ { name: 'Deterministic GPU Allocation', description: 'Reserve the GPU type you need and get exactly that, every time.', icon: AdjustmentsHorizontalIcon, }, { name: 'Multi-Topology Deployment', description: 'Run workloads in data centers, at the edge, or on self-hosted nodes.', icon: GlobeAltIcon, }, { name: 'Transparent Cost Structure', description: 'No inflated pricing, no hidden fees, no marketplace brokerage.', icon: BanknotesIcon, }, ] export function GpuOverview() { return (
PLATFORM OVERVIEW Core Features

The Mycelium GPU layer provides predictable, sovereign acceleration — without arbitrary limits or hidden economics.

{coreFeatures.map((feature) => (

{feature.name}

{feature.description}

))}
) }