import { CircleBackground } from '../../components/CircleBackground' import { Container } from '../../components/Container' import { Eyebrow, SectionHeader, P } from '../../components/Texts' const overviewCards = [ { label: 'Overview', title: 'Built for sovereign, verifiable operations', copy: `Mycelium Compute provides a sovereign, deterministic compute fabric that enables developers to launch workloads with cryptographic certainty and autonomous operations. Built on decentralized infrastructure, it keeps environments transparent, verifiable, and free from manual intervention.`, }, { label: 'Core Concept', title: 'Deterministic compute fabric', copy: `Every workload deploys exactly as intended through cryptographic verification—eliminating tampering and configuration drift while maintaining complete operational autonomy.`, }, ] export function ComputeOverview() { return (
Mycelium Compute Deterministic compute fabric for autonomous workloads.

Mycelium Compute delivers predictable, sovereign performance—free from lock-in and drift. Deploy any workload with cryptographic precision, knowing the platform verifies, scales, and heals itself on your behalf.

Deterministic. Self-managing. Stateless by design.

{overviewCards.map((card) => (

{card.label}

{card.title}

{card.copy}

))}
) }