forked from emre/www_projectmycelium_com
- 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)
45 lines
1.0 KiB
TypeScript
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>
|
|
</>
|
|
)
|
|
}
|