new cloud page

This commit is contained in:
Emre
2025-10-23 13:07:24 +03:00
parent 48979de1c7
commit 4c30524504
14 changed files with 415 additions and 384 deletions

View File

@@ -1,42 +1,28 @@
import { AnimatedSection } from '../../components/AnimatedSection'
import { CloudHero } from './CloudHero'
import { FeaturesSection } from './FeaturesSection'
import { MyceliumNetworking } from './MyceliumNetworking'
import { WebGateway } from './WebGateway'
import { MultiMaster } from './MultiMaster'
import { LoadBalancing } from './LoadBalancing'
import { CloudOverview } from './CloudOverview'
import { ComputeStorageSplit } from './ComputeStorageSplit'
import { SecurityPillars } from './SecurityPillars'
import { CloudCTA } from './CloudCTA'
export default function CloudPage() {
return (
<div>
<>
<AnimatedSection>
<CloudHero />
</AnimatedSection>
<AnimatedSection>
<FeaturesSection />
<CloudOverview />
</AnimatedSection>
<AnimatedSection>
<MyceliumNetworking />
<ComputeStorageSplit />
</AnimatedSection>
<AnimatedSection>
<WebGateway />
<SecurityPillars />
</AnimatedSection>
<AnimatedSection>
<MultiMaster />
</AnimatedSection>
<AnimatedSection>
<LoadBalancing />
</AnimatedSection>
<AnimatedSection>
<CloudCTA />
</AnimatedSection>
</div>
</>
)
}