import { Container } from '../../components/Container' import { Eyebrow, SectionHeader, P } from '../../components/Texts' const differentiators = [ { title: 'Unified Fabric', description: 'Transforms fragmented GPU resources into a single, standard interface accessible anywhere.', }, { title: 'Sovereign Control', description: 'Operate without vendor lock-in or geographic restrictions—govern policies entirely through code.', }, { title: 'Code-Driven Orchestration', description: 'APIs and smart contracts automate allocation, attestation, and lifecycle management.', }, { title: 'Deterministic Performance', description: 'Guaranteed GPU allocation delivers the compute you reserve with consistent performance characteristics.', }, ] const costEfficiency = [ 'Transparent pricing with no hidden fees.', 'Pay only for the GPU cycles you consume.', 'Global optimization locates the most cost-effective nodes.', 'Avoid premium lock-in from centralized providers.', ] export function GpuDifferentiators() { return (
Key Differentiators GPU acceleration with sovereignty and clarity.

Mycelium GPU delivers verifiable access to power when you need it. Control stays in your hands, from allocation policies to cost structure.

{differentiators.map((item) => (

{item.title}

{item.description}

))}

Cost Efficiency

Transparent economics makes capacity planning simple while keeping budgets predictable.

    {costEfficiency.map((item) => (
  • {item}
  • ))}
) }