Files
www_projectmycelium_com/src/pages/gpu/GpuPage.tsx
sasha-astiadi 8d9f02a846 refactor: clean up unused imports and component exports
- 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
2025-11-04 17:15:07 +01:00

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>
</>
)
}