- Renamed CallToAction components to full Page components for compute, storage and GPU sections - Added new waitlist form types: storage_waitlist, compute_waitlist, and gpu_waitlist - Updated form placeholder text to show relevant requirements based on waitlist type - Fixed string template syntax in Dropdown component CSS classes
17 lines
367 B
TypeScript
17 lines
367 B
TypeScript
import { AnimatedSection } from '../../components/AnimatedSection'
|
|
import { GpuHero } from './GpuHero'
|
|
import { CallToAction } from './CallToAction'
|
|
|
|
export default function GpuPage() {
|
|
return (
|
|
<div>
|
|
<AnimatedSection>
|
|
<GpuHero />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<CallToAction />
|
|
</AnimatedSection>
|
|
</div>
|
|
)
|
|
}
|