Files
www_projectmycelium_com/src/pages/cloud/CloudPage.tsx
2025-10-28 19:32:09 +03:00

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