import { Container } from '@/components/Container' import { Eyebrow, SectionHeader, P } from '@/components/Texts' const gpuUseCases = [ { title: 'AI / ML Training & Inference', description: 'Scale model execution across sovereign GPU nodes.', }, { title: 'Rendering & Visualization', description: 'Run 3D, scientific, simulation, or generative rendering pipelines.', }, { title: 'Distributed & Edge Compute', description: 'Place GPU power close to where data is generated.', }, ] export function GpuUseCases() { return (
USE CASES Built for Intelligent Workloads

From sovereign AI execution to real-time rendering and edge inference, Mycelium GPU ensures predictable acceleration with full ownership and no centralized control.

{gpuUseCases.map((useCase) => (

{useCase.title}

{useCase.description}

))}
) }