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
This commit is contained in:
16
src/pages/compute/ComputePage.tsx
Normal file
16
src/pages/compute/ComputePage.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import { AnimatedSection } from '../../components/AnimatedSection'
|
||||
import { ComputeHero } from './ComputeHero'
|
||||
import { CallToAction } from './CallToAction'
|
||||
|
||||
export default function ComputePage() {
|
||||
return (
|
||||
<div>
|
||||
<AnimatedSection>
|
||||
<ComputeHero />
|
||||
</AnimatedSection>
|
||||
<AnimatedSection>
|
||||
<CallToAction />
|
||||
</AnimatedSection>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user