- Replaced mobile phone mockups with full-width desktop screenshots for cloud platform features - Updated feature descriptions to focus on cloud/Kubernetes capabilities instead of network features - Changed section layout to improve desktop view with left-aligned feature tabs - Removed unused phone frame component and related mobile UI elements - Updated image assets from jpg to png format and reorganized image paths - Reordered page
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import { AnimatedSection } from '../../components/AnimatedSection'
|
|
import { CloudOverview } from './CloudOverview'
|
|
import { CloudArchitecture } from './CloudArchitecture'
|
|
import { CloudFeatures } from './CloudFeatures'
|
|
import { CloudGettingStarted } from './CloudGettingStarted'
|
|
import { CloudUseCases } from './CloudUseCases'
|
|
import { SecurityPillars } from './SecurityPillars'
|
|
import { CloudCTA } from './CloudCTA'
|
|
import { CloudHeroNew } from './CloudHeroNew'
|
|
|
|
export default function CloudPage() {
|
|
return (
|
|
<>
|
|
|
|
<AnimatedSection>
|
|
<CloudHeroNew />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<CloudFeatures />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CloudArchitecture />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CloudGettingStarted />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<CloudUseCases />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<SecurityPillars />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<CloudCTA />
|
|
</AnimatedSection>
|
|
</>
|
|
)
|
|
}
|