forked from emre/www_projectmycelium_com
- Removed unused component imports across multiple pages (AgentHeroAlt, ComputeHero, CloudPage, GpuPage, StoragePage) - Changed ComputeDesign export from default to named export for consistency - Removed CloudDesign section from CloudPage layout
43 lines
971 B
TypeScript
43 lines
971 B
TypeScript
import { AnimatedSection } from '../../components/AnimatedSection'
|
|
import { GpuHero } from './GpuHero'
|
|
import { GpuOverview } from './GpuOverview'
|
|
import { GpuArchitecture } from './GpuArchitecture'
|
|
import { GpuUseCases } from './GpuUseCases'
|
|
import { CallToAction } from './CallToAction'
|
|
import { GpuCapabilities } from './GpuCapabilities'
|
|
import { GpuDesign } from './GpuDesign'
|
|
|
|
export default function GpuPage() {
|
|
return (
|
|
<>
|
|
<AnimatedSection>
|
|
<GpuHero />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<GpuCapabilities />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<GpuDesign />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<GpuArchitecture />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<GpuOverview />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<GpuUseCases />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CallToAction />
|
|
</AnimatedSection>
|
|
</>
|
|
)
|
|
}
|