Files
www_projectmycelium_com/src/pages/storage/StorageUseCases.tsx
sasha-astiadi 7f9023c631 feat: simplify storage page messaging and structure
- Streamlined call-to-action to focus on cloud vs. self-hosted options
- Condensed architecture and use cases sections to remove excessive detail
- Reorganized page component order and added new capability/design sections
2025-11-04 16:23:57 +01:00

55 lines
1.8 KiB
TypeScript

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 (
<section className="bg-white py-24 sm:py-32">
<Container>
<div className="mx-auto max-w-3xl text-center">
<Eyebrow>USE CASES</Eyebrow>
<SectionHeader as="h2" className="mt-6 text-gray-900">
Built for Real Data Workloads
</SectionHeader>
<P className="mt-6 text-gray-600">
Mycelium Storage adapts to compliance-driven enterprise data,
distributed application workloads, and global asset delivery
without giving up sovereignty.
</P>
</div>
<div className="mx-auto mt-16 max-w-4xl space-y-6">
{storageUseCases.map((useCase) => (
<div
key={useCase.title}
className="rounded-3xl border border-slate-200 bg-white p-8 shadow-sm transition hover:-translate-y-1 hover:border-cyan-300 hover:shadow-lg"
>
<h3 className="text-xl font-semibold text-gray-900">
{useCase.title}
</h3>
<p className="mt-3 text-sm leading-relaxed text-gray-600">
{useCase.description}
</p>
</div>
))}
</div>
</Container>
</section>
)
}