import { Container } from '../../components/Container' import { Eyebrow, SectionHeader, P } from '../../components/Texts' const storageUseCases = [ { title: 'Data Sovereignty & Compliance', description: 'Keep data under your control, choose residency per dataset.', }, { title: 'Distributed Application Storage', description: 'Serve data to services, agents, clusters, or edge workloads.', }, { title: 'Content Distribution', description: 'Serve public or private assets globally, without centralized hosting.', }, ] export function StorageUseCases() { return (
USE CASES Built for Real Data Workloads

Mycelium Storage adapts to compliance-driven enterprise data, distributed application workloads, and global asset delivery — without giving up sovereignty.

{storageUseCases.map((useCase) => (

{useCase.title}

{useCase.description}

))}
) }