forked from emre/www_projectmycelium_com
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user