forked from emre/www_projectmycelium_com
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import { AnimatedSection } from '../../components/AnimatedSection'
|
|
import { CloudHero } from './CloudHero'
|
|
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'
|
|
|
|
export default function CloudPage() {
|
|
return (
|
|
<>
|
|
<AnimatedSection>
|
|
<CloudHero />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<CloudOverview />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<CloudArchitecture />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<CloudFeatures />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<CloudGettingStarted />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<CloudUseCases />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<SecurityPillars />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<CloudCTA />
|
|
</AnimatedSection>
|
|
</>
|
|
)
|
|
}
|