import { Small } from '@/components/Texts' const highlights = [ { label: 'Overview', title: 'Encrypted & Verifiable Storage', description: 'Data is secured with cryptographic identity, not cloud trust.', }, { label: 'Core Concept', title: 'Self-Healing Replication', description: 'The system repairs corruption and restores replicas automatically.', }, { label: 'Outcome', title: 'Multi-Protocol Access', description: 'Serve the same dataset over S3, IPFS, or filesystem mounts, without duplicating data.', }, ] export function StorageOverview() { return (
{/* ✅ Top horizontal line with spacing */}
{highlights.map((item) => (
{item.label}

{item.title}

{item.description}

))}
) }