feat: restructure GPU page layout and simplify content presentation

- Reordered sections to improve information flow (Capabilities → Design → Architecture → Overview)
- Simplified use cases and overview sections by removing redundant bullet points
- Added new GpuCapabilities and GpuDesign components with cleaner, more focused messaging
This commit is contained in:
2025-11-04 16:50:15 +01:00
parent 8b892c9432
commit 865252274c
6 changed files with 253 additions and 115 deletions

View File

@@ -7,6 +7,8 @@ import { GpuUseCases } from './GpuUseCases'
import { GpuGettingStarted } from './GpuGettingStarted'
import { GpuDifferentiators } from './GpuDifferentiators'
import { CallToAction } from './CallToAction'
import { GpuCapabilities } from './GpuCapabilities'
import { GpuDesign } from './GpuDesign'
export default function GpuPage() {
return (
@@ -14,24 +16,39 @@ export default function GpuPage() {
<AnimatedSection>
<GpuHero />
</AnimatedSection>
<AnimatedSection>
<GpuOverview />
<GpuCapabilities />
</AnimatedSection>
<AnimatedSection>
<GpuDesign />
</AnimatedSection>
<AnimatedSection>
<GpuArchitecture />
</AnimatedSection>
<AnimatedSection>
<GpuOverview />
</AnimatedSection>
<AnimatedSection>
<GpuUseCases />
</AnimatedSection>
<AnimatedSection>
<GpuIntegration />
</AnimatedSection>
<AnimatedSection>
<GpuUseCases />
</AnimatedSection>
<AnimatedSection>
<GpuGettingStarted />
</AnimatedSection>
<AnimatedSection>
<GpuDifferentiators />
</AnimatedSection>
<AnimatedSection>
<CallToAction />
</AnimatedSection>