forked from emre/www_projectmycelium_com
- Simplified cloud messaging to focus on sovereignty and self-healing capabilities - Updated hero section copy across Cloud, Compute, GPU and Storage pages for clearer value proposition - Added new CloudHosting component to Cloud page layout - Changed hero images for GPU and Storage pages to improve visual consistency - Adjusted layout spacing and typography in Compute hero section - Streamlined cloud features description to be more concise an
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'
|
|
|
|
export default function CloudPage() {
|
|
return (
|
|
<>
|
|
|
|
<AnimatedSection>
|
|
<CloudHeroNew />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CloudHosting />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CloudFeatures />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CloudArchitecture />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CloudGettingStarted />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<CloudUseCases />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<SecurityPillars />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<CloudCTA />
|
|
</AnimatedSection>
|
|
</>
|
|
)
|
|
}
|