import { ShieldCheckIcon, ArrowPathIcon, RocketLaunchIcon, } from '@heroicons/react/24/solid' import { Container } from '@/components/Container' import { Eyebrow, H3, P, CT, CP } from '@/components/Texts' const features = [ { name: 'Cryptographically verified deployments', description: 'Every cluster state is signed and checksummed to guarantee truth.', icon: ShieldCheckIcon, }, { name: 'Stateless execution that scales anywhere', description: 'Run workloads on any node, region, or edge without manual orchestration.', icon: RocketLaunchIcon, }, { name: 'Automatic healing and recovery', description: 'Self-repairing processes ensure workloads stay available and consistent.', icon: ArrowPathIcon, }, ] export function ComputeDesign() { return (
CORE VALUE

Deterministic by Design

Every workload runs exactly as declared: no drift, no hidden state, no surprises.

{features.map((feature) => (
))}
) }