new dropdown content from Mik

This commit is contained in:
Emre
2025-10-28 19:32:09 +03:00
parent 1260afdd82
commit 3c9823bf80
35 changed files with 2511 additions and 132 deletions

View File

@@ -1,20 +1,40 @@
import { AnimatedSection } from '../../components/AnimatedSection'
import { GpuHero } from './GpuHero'
import { CallToAction } from './CallToAction'
import { GpuOverview } from './GpuOverview'
import { GpuArchitecture } from './GpuArchitecture'
import { GpuIntegration } from './GpuIntegration'
import { GpuUseCases } from './GpuUseCases'
import { GpuGettingStarted } from './GpuGettingStarted'
import { GpuDifferentiators } from './GpuDifferentiators'
import { CallToAction } from './CallToAction'
export default function GpuPage() {
return (
<div>
<>
<AnimatedSection>
<GpuHero />
</AnimatedSection>
<AnimatedSection>
<GpuOverview />
</AnimatedSection>
<AnimatedSection>
<GpuArchitecture />
</AnimatedSection>
<AnimatedSection>
<GpuIntegration />
</AnimatedSection>
<AnimatedSection>
<GpuUseCases />
</AnimatedSection>
<AnimatedSection>
<GpuGettingStarted />
</AnimatedSection>
<AnimatedSection>
<GpuDifferentiators />
</AnimatedSection>
<AnimatedSection>
<CallToAction />
</AnimatedSection>
</div>
</>
)
}