import { Container } from '../../components/Container' import { Eyebrow, SectionHeader, P, Small } from '../../components/Texts' const features = [ { title: 'Quantum-Safe Storage (QSS)', description: 'Quantum-resistant encryption secures data beyond the application layer so ownership stays yours.', bullets: [ 'Beyond AES-256 with post-quantum algorithms.', 'Multi-layer protection enforced automatically.', 'Future-proof against emerging quantum threats.', 'Total control of keys, residency, and governance.', ], }, { title: 'Self-Healing Storage System', description: 'Autonomous recovery heals failures or corruption instantly with no human intervention.', bullets: [ 'Instant detection and repair of anomalies.', 'Integrity preserved while data is restored.', 'Continuous verification validates every replica.', 'Zero-ops recovery that runs around the clock.', ], }, { title: 'Multi-Protocol Data Access', description: 'Serve the same dataset over IPFS, S3, WebDAV, HTTP, and native file systems.', bullets: [ 'IPFS for decentralized, content-addressed retrieval.', 'S3-compatible API for existing tooling and SDKs.', 'WebDAV for mounted filesystem access.', 'HTTP and POSIX for direct application integration.', ], }, { title: 'Geo-Aware Placement & Replication', description: 'Define residency, redundancy, and distribution on a per-workload basis.', bullets: [ 'Pin data to specific jurisdictions or zones.', 'Custom redundancy policies per dataset.', 'Automatic zone-to-zone replication for resilience.', 'Global distribution across the ThreeFold Grid.', ], }, { title: 'Ultra-Efficient Zero-Images (Flists)', description: 'Metadata-only flists shrink images up to 100x, enabling instant Zero-OS deployments.', bullets: [ 'Drastically reduced storage footprint for artifacts.', 'Metadata-driven delivery accelerates boot times.', 'Bandwidth-efficient transfers to any node.', 'Perfect for immutable workloads and rapid rollback.', ], }, ] export function StorageFeatures() { return (
Core Features Data services engineered for sovereignty and speed.

Mycelium Storage combines quantum-safe cryptography, autonomous healing, and universal protocol support. It adapts to every workload without sacrificing control or performance.

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

{feature.title}

{feature.description}

    {feature.bullets.map((bullet) => (
  • {bullet}
  • ))}
))}
) }