import { LockClosedIcon, CpuChipIcon, AdjustmentsHorizontalIcon, } from '@heroicons/react/24/solid' import { Container } from '@/components/Container' import { Eyebrow, H3, CT, CP } from '@/components/Texts' const architecture = [ { name: 'Mesh Networking', description: 'Secure connectivity across all nodes.', icon: LockClosedIcon, }, { name: 'Sovereign Compute', description: 'Execution only on hardware you control.', icon: CpuChipIcon, }, { name: 'Deterministic Orchestration', description: 'Workloads deploy and update predictably.', icon: AdjustmentsHorizontalIcon, }, ] export function ComputeArchitecture() { return (
ARCHITECTURE

HOW IT WORKS

{architecture.map((item) => (
))}
) }