Initial commit

This commit is contained in:
Emre
2025-10-22 17:30:00 +03:00
commit 205c8fd0d9
134 changed files with 8080 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
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 { CloudCTA } from './CloudCTA'
export default function CloudPage() {
return (
<div>
<AnimatedSection>
<CloudHero />
</AnimatedSection>
<AnimatedSection>
<FeaturesSection />
</AnimatedSection>
<AnimatedSection>
<MyceliumNetworking />
</AnimatedSection>
<AnimatedSection>
<WebGateway />
</AnimatedSection>
<AnimatedSection>
<MultiMaster />
</AnimatedSection>
<AnimatedSection>
<LoadBalancing />
</AnimatedSection>
<AnimatedSection>
<CloudCTA />
</AnimatedSection>
</div>
)
}