import { Container } from '@/components/Container' import { Eyebrow, H3, CT, CP } from '@/components/Texts' import { ServerStackIcon, GlobeAltIcon, FolderOpenIcon, LockClosedIcon, } from '@heroicons/react/24/solid' const capabilities = [ { name: 'S3-Compatible Object Storage', description: 'Works with existing SDKs & tooling.', icon: ServerStackIcon, }, { name: 'IPFS & Content-Addressed Access', description: 'Ideal for distributed and decentralized workloads.', icon: GlobeAltIcon, }, { name: 'Filesystem Mounts (WebDAV / POSIX)', description: 'Mount storage directly into workflows and apps.', icon: FolderOpenIcon, }, { name: 'Encrypted Replication & Placement Control', description: 'Choose where data physically lives – and who controls it.', icon: LockClosedIcon, }, ] export function StorageCapabilities() { return (
CAPABILITIES

What You Can Use Mycelium Storage For

{capabilities.map((item) => (
{item.name} {item.description}
))}
) }