import { Container } from '../../components/Container' const computeFeatures = [ { title: 'Deterministic Deployments', description: 'Cryptographic verification ensures every workload deploys exactly as intended—no tampering, no drift.', }, { title: 'Self-Managing & Stateless Infrastructure', description: 'Fully autonomous infrastructure that scales globally without manual intervention.', }, { title: 'Zero-Image Technology (100x Compression)', description: 'Metadata-driven zero-images cut artifacts up to 100x, slashing bandwidth and deployment overhead.', }, { title: 'Smart Contract-Based Deployment', description: 'Cryptographically signed contracts orchestrate every workload with transparent, tamper-proof execution.', }, { title: 'Multi-Workload Compatibility with Secure Boot', description: 'Run containers, VMs, and Linux workloads anywhere with stateless secure boot and continuous verification.', }, ] const storageFeatures = [ { title: 'Quantum-Safe Storage (QSS)', description: 'Quantum-resistant encryption secures data beyond the app layer so ownership and control stay yours.', }, { title: 'Self-Healing Storage System', description: 'Autonomous recovery heals failures or corruption instantly, preserving integrity without human intervention.', }, { title: 'Multi-Protocol Data Access', description: 'Serve the same data via IPFS, S3, WebDAV, HTTP, and native file systems for seamless integration.', }, { title: 'Geo-Aware Data Placement & Replication', description: 'Define residency, redundancy, and distribution per workload while zone-to-zone replication hardens resilience.', }, { title: 'Ultra-Efficient Zero-Images (Flists)', description: 'Metadata-only flists shrink images up to 100x, replacing heavy VMs and powering instant Zero-OS deployments.', }, ] export function ComputeStorageSplit() { return (

Compute

Deterministic compute fabric.

Launch workloads with cryptographic certainty and autonomous operations.

    {computeFeatures.map((item) => (
  • {item.title} {item.description}
  • ))}

Storage

Quantum-safe, sovereign data plane.

Protect and place data precisely while keeping access effortless.

    {storageFeatures.map((item) => (
  • {item.title} {item.description}
  • ))}
) }