import { Container } from '../../components/Container' import { Eyebrow, H3, P, CT } from '../../components/Texts' import { LockClosedIcon, ArrowPathIcon, GlobeAsiaAustraliaIcon, } from '@heroicons/react/24/solid' const benefits = [ { name: 'Encrypted and verifiable at rest and in motion', icon: LockClosedIcon, }, { name: 'Self-healing replication and integrity checks', icon: ArrowPathIcon, }, { name: 'Residency + governance policies you actually control', icon: GlobeAsiaAustraliaIcon, }, ] export function StorageDesign() { return (
{/* Header */}
CORE VALUE

Sovereign Storage That Heals Itself

Mycelium Storage continuously verifies integrity and restores replicas automatically, so data stays available without operational overhead.

{/* Benefits */}
{benefits.map((benefit) => (
))}
) }