diff --git a/src/pages/gpu/GpuOverview.tsx b/src/pages/gpu/GpuOverview.tsx new file mode 100644 index 0000000..35ea95c --- /dev/null +++ b/src/pages/gpu/GpuOverview.tsx @@ -0,0 +1,56 @@ +import { CodeBracketSquareIcon, CubeTransparentIcon, LockClosedIcon, Squares2X2Icon } from '@heroicons/react/24/outline' + +const features = [ + { + name: 'No Silos', + description: 'All GPU resources accessible through a single interface.', + icon: Squares2X2Icon, + }, + { + name: 'No Intermediaries', + description: 'Direct access to GPU resources without centralized control.', + icon: CubeTransparentIcon, + }, + { + name: 'Verifiable Power', + description: 'Every GPU cycle cryptographically verified.', + icon: LockClosedIcon, + }, + { + name: 'Code-Orchestrated', + description: 'Managed entirely through APIs and smart contracts.', + icon: CodeBracketSquareIcon, + }, +] + +export function GpuOverview() { + return ( +
+
+
+
+

+ Unified GPU Acceleration Across the Grid +

+

+ Mycelium GPU provides unified access to distributed GPU acceleration across the ThreeFold Grid. It transforms fragmented GPU resources into a single adaptive intelligence layer — enabling you to run AI, ML, and rendering workloads anywhere, anytime, with verifiable performance and transparent costs. +

+
+
+ {features.map((feature) => ( +
+
+
+
+ {feature.name} +
+
{feature.description}
+
+ ))} +
+
+
+
+ ) +} diff --git a/src/pages/gpu/GpuPage.tsx b/src/pages/gpu/GpuPage.tsx index bbf209b..4662245 100644 --- a/src/pages/gpu/GpuPage.tsx +++ b/src/pages/gpu/GpuPage.tsx @@ -1,6 +1,7 @@ import { AnimatedSection } from '../../components/AnimatedSection' import { GpuHero } from './GpuHero' import { CallToAction } from './CallToAction' +import { GpuOverview } from './GpuOverview' export default function GpuPage() { return ( @@ -8,6 +9,9 @@ export default function GpuPage() { + + +