- Removed CloudGettingStarted section from the page - Replaced SecurityPillars with new CloudBluePrint component - Adjusted section ordering to improve page flow
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import { AnimatedSection } from '../../components/AnimatedSection'
|
|
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'
|
|
import { CloudHosting } from './CloudHosting'
|
|
import { CloudBluePrint } from './CloudBluePrint'
|
|
|
|
export default function CloudPage() {
|
|
return (
|
|
<>
|
|
|
|
<AnimatedSection>
|
|
<CloudHeroNew />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CloudHosting />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CloudFeatures />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CloudArchitecture />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CloudUseCases />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CloudBluePrint />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CloudCTA />
|
|
</AnimatedSection>
|
|
</>
|
|
)
|
|
}
|