diff --git a/src/pages/compute/ComputeDesign.tsx b/src/pages/compute/ComputeDesign.tsx index 49e262a..f2c70b7 100644 --- a/src/pages/compute/ComputeDesign.tsx +++ b/src/pages/compute/ComputeDesign.tsx @@ -1,56 +1,54 @@ +import { Eyebrow, H3, P, CP, CT } from '@/components/Texts' import { - ShieldCheckIcon, ArrowPathIcon, - RocketLaunchIcon, + GlobeAltIcon, + ShieldCheckIcon, } from '@heroicons/react/24/solid' -import { Container } from '@/components/Container' -import { Eyebrow, H3, P, CT, CP } from '@/components/Texts' -const features = [ +const stats = [ { + id: 1, name: 'Cryptographically verified deployments', - description: 'Every cluster state is signed and checksummed to guarantee truth.', + value: 'Signed & Checksummed', icon: ShieldCheckIcon, }, { + id: 2, name: 'Stateless execution that scales anywhere', - description: 'Run workloads on any node, region, or edge without manual orchestration.', - icon: RocketLaunchIcon, + value: 'Global Scaling', + icon: GlobeAltIcon, }, { + id: 3, name: 'Automatic healing and recovery', - description: 'Self-repairing processes ensure workloads stay available and consistent.', + value: 'Self-Repairing', 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) => ( -
-
+ + {/* ✅ Bottom horizontal line + spacing */} +
+
+
) } diff --git a/src/pages/compute/ComputePage.tsx b/src/pages/compute/ComputePage.tsx index 414202c..0b98ef0 100644 --- a/src/pages/compute/ComputePage.tsx +++ b/src/pages/compute/ComputePage.tsx @@ -4,7 +4,6 @@ import { ComputeFeatures } from './ComputeFeatures' import { ComputeArchitecture } from './ComputeArchitecture' import { ComputeUseCases } from './ComputeUseCases' import { CallToAction } from './CallToAction' -import { ComputeCapabilities } from './ComputeCapabilities' import { ComputeDesign } from './ComputeDesign' import { ComputeOverview } from './ComputeOverview' import { ComputeCapabilitiesNew } from './ComputeCapabilitiesNew'