import { CodeBracketSquareIcon, CubeTransparentIcon, LockClosedIcon, Squares2X2Icon, } from '@heroicons/react/24/outline' import { Container } from '../../components/Container' import { Eyebrow, SectionHeader, P, Small } from '../../components/Texts' const overviewCards = [ { label: 'Overview', title: 'Unified GPU acceleration across the ThreeFold Grid', description: 'Mycelium GPU aggregates distributed hardware into a single fabric, delivering sovereign acceleration for AI, ML, and rendering workloads.', }, { label: 'Core Concept', title: 'Sovereign intelligence layer', description: 'No silos, no intermediaries—just raw, verifiable GPU power orchestrated through smart contracts and APIs you control.', }, ] const principles = [ { name: 'No Silos', description: 'Every GPU resource is accessible through a single interface.', icon: Squares2X2Icon, }, { name: 'No Intermediaries', description: 'Direct access to hardware without centralized brokers.', icon: CubeTransparentIcon, }, { name: 'Verifiable Power', description: 'Every GPU cycle is attested and cryptographically verified.', icon: LockClosedIcon, }, { name: 'Code-Orchestrated', description: 'Smart contracts and APIs automate allocation and policy.', icon: CodeBracketSquareIcon, }, ] export function GpuOverview() { return (
Platform Overview The sovereign acceleration layer for intelligent workloads.

Mycelium GPU makes distributed acceleration feel like one machine. Harness global GPUs with deterministic performance, transparent costs, and end-to-end verification.

{overviewCards.map((card) => (
{card.label}

{card.title}

{card.description}

))}
{principles.map((principle) => (

{principle.name}

{principle.description}

))}
) }