forked from emre/www_projectmycelium_com
new dropdown content from Mik
This commit is contained in:
81
src/pages/gpu/GpuUseCases.tsx
Normal file
81
src/pages/gpu/GpuUseCases.tsx
Normal file
@@ -0,0 +1,81 @@
|
||||
import { Container } from '../../components/Container'
|
||||
import { Eyebrow, SectionHeader, P } from '../../components/Texts'
|
||||
|
||||
const useCases = [
|
||||
{
|
||||
title: 'AI / ML Training',
|
||||
description:
|
||||
'Scale training, fine-tuning, and inference workloads anywhere on the grid.',
|
||||
bullets: ['GPU acceleration', 'Scalable compute', 'Cost optimization'],
|
||||
},
|
||||
{
|
||||
title: 'Rendering & Visualization',
|
||||
description:
|
||||
'Drive high-performance graphics pipelines for media, science, and immersive experiences.',
|
||||
bullets: [
|
||||
'Distributed 3D rendering',
|
||||
'Scientific visualization',
|
||||
'Real-time VR / AR processing',
|
||||
'Digital twin simulations',
|
||||
],
|
||||
},
|
||||
{
|
||||
title: 'General GPU Computing',
|
||||
description:
|
||||
'Harness sovereign acceleration for simulations, finance, blockchain, and research.',
|
||||
bullets: [
|
||||
'Scientific simulations',
|
||||
'Financial modeling',
|
||||
'Blockchain processing',
|
||||
'Protein folding and discovery',
|
||||
],
|
||||
},
|
||||
]
|
||||
|
||||
export function GpuUseCases() {
|
||||
return (
|
||||
<section className="bg-white py-24 sm:py-32">
|
||||
<Container>
|
||||
<div className="mx-auto max-w-3xl text-center">
|
||||
<Eyebrow className="tracking-[0.32em] uppercase text-cyan-500">
|
||||
Use Cases
|
||||
</Eyebrow>
|
||||
<SectionHeader as="h2" className="mt-6 text-gray-900">
|
||||
Acceleration for every intelligent workload.
|
||||
</SectionHeader>
|
||||
<P className="mt-6 text-gray-600">
|
||||
From deep learning to immersive visualization, Mycelium GPU delivers
|
||||
deterministic access to the power you need without the waitlists or
|
||||
markups of centralized clouds.
|
||||
</P>
|
||||
</div>
|
||||
<div className="mt-16 grid gap-8 lg:grid-cols-3">
|
||||
{useCases.map((useCase) => (
|
||||
<div
|
||||
key={useCase.title}
|
||||
className="flex h-full flex-col 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-4 text-sm leading-relaxed text-gray-600">
|
||||
{useCase.description}
|
||||
</p>
|
||||
<ul className="mt-6 space-y-3 text-sm text-gray-600">
|
||||
{useCase.bullets.map((bullet) => (
|
||||
<li
|
||||
key={bullet}
|
||||
className="flex items-start gap-3 rounded-2xl border border-cyan-100 bg-cyan-50/60 p-3 leading-relaxed"
|
||||
>
|
||||
<span className="mt-1 inline-block size-2 rounded-full bg-cyan-500" />
|
||||
<span>{bullet}</span>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</Container>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user