refactor: reorganize cloud page component structure

- Moved CloudOverview component into its own AnimatedSection for consistent layout
- Reordered imports to match component rendering sequence
- Fixed spacing and removed empty line in component structure
This commit is contained in:
2025-10-31 05:02:02 +01:00
parent ea3ee4d455
commit f1c388cbab

View File

@@ -1,5 +1,4 @@
import { AnimatedSection } from '../../components/AnimatedSection'
import { CloudOverview } from './CloudOverview'
import { CloudArchitecture } from './CloudArchitecture'
import { CloudFeatures } from './CloudFeatures'
import { CloudGettingStarted } from './CloudGettingStarted'
@@ -15,10 +14,13 @@ export default function CloudPage() {
<AnimatedSection>
<CloudHeroNew />
</AnimatedSection>
<AnimatedSection>
<CloudOverview />
</AnimatedSection>
<AnimatedSection>
<CloudFeatures />
</AnimatedSection>
<AnimatedSection>
<CloudArchitecture />
</AnimatedSection>