import { Container } from '@/components/Container' import { Eyebrow, SectionHeader, P, Small } from '@/components/Texts' const featureGroups = [ { title: 'Self-Managing Infrastructure', description: 'Scaling, healing, and failover happen automatically, no manual intervention.', }, { title: 'Secure, Stateless Execution', description: 'Workloads remain isolated, reproducible, and portable, no environment drift or configuration decay.', }, { title: 'Zero-Image Delivery', description: 'Deploy workloads using metadata instead of large container images for instant launches.', }, { title: 'Global Placement Control', description: 'Choose where workloads run, on your hardware or across the decentralized grid.', }, ] export function ComputeFeatures() { return (
Core Features Precision infrastructure that verifies itself.

Every layer is designed for determinism, from how workloads are declared to the way they scale, protect, and govern themselves on the grid.

{featureGroups.map((feature) => (
Feature

{feature.title}

{feature.description}

))}
) }