Files
www_projectmycelium_com/src/pages/gpu/GpuPage.tsx
sasha-astiadi be74079de2 feat: convert CTA components to full pages and expand waitlist form options
- 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
2025-10-24 16:30:23 +02:00

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