Files
www_projectmycelium_com/src/pages/cloud/CloudPage.tsx
sasha-astiadi 2bd3026bac feat: simplify cloud and compute architecture sections
- Condensed architecture explanations to focus on core capabilities rather than implementation details
- Replaced detailed bullet lists with concise descriptions for better readability
- Added new CallToAction component with dual-path user journey (host vs deploy)
2025-11-05 12:17:22 +01:00

45 lines
1.0 KiB
TypeScript

import { AnimatedSection } from '../../components/AnimatedSection'
import { CloudArchitecture } from './CloudArchitecture'
import { CloudFeatures } from './CloudFeatures'
import { CloudUseCases } from './CloudUseCases'
import { CloudCTA } from './CloudCTA'
import { CloudHeroNew } from './CloudHeroNew'
import { CloudHosting } from './CloudHosting'
import { CloudBluePrint } from './CloudBluePrint'
import { CalltoAction } from './CalltoAction'
export default function CloudPage() {
return (
<>
<AnimatedSection>
<CloudHeroNew />
</AnimatedSection>
<AnimatedSection>
<CloudHosting />
</AnimatedSection>
<AnimatedSection>
<CloudFeatures />
</AnimatedSection>
<AnimatedSection>
<CloudArchitecture />
</AnimatedSection>
<AnimatedSection>
<CloudUseCases />
</AnimatedSection>
<AnimatedSection>
<CloudBluePrint />
</AnimatedSection>
<AnimatedSection>
<CalltoAction />
</AnimatedSection>
</>
)
}