forked from emre/www_projectmycelium_com
		
	- Added new hero section alternatives for Agents, Cloud, Compute and GPU pages with modern visual layouts - Updated hero background images with new high-quality assets for better visual appeal - Replaced spinning animation heroes with full-width image + text split layouts - Added consistent styling across hero sections with left-aligned text and right-side hero images - Updated hero copy to focus on platform capabilities and value propositions - Replace
		
			
				
	
	
		
			30 lines
		
	
	
		
			799 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			799 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { AnimatedSection } from '../../components/AnimatedSection'
 | 
						|
import { CloudHero } from './CloudHero'
 | 
						|
import { CloudOverview } from './CloudOverview'
 | 
						|
import { ComputeStorageSplit } from './ComputeStorageSplit'
 | 
						|
import { SecurityPillars } from './SecurityPillars'
 | 
						|
import { CloudCTA } from './CloudCTA'
 | 
						|
import { CloudHeroAlt } from './CloudHeroAlt'
 | 
						|
 | 
						|
export default function CloudPage() {
 | 
						|
  return (
 | 
						|
    <>
 | 
						|
      <AnimatedSection>
 | 
						|
        <CloudHeroAlt />
 | 
						|
      </AnimatedSection>
 | 
						|
      <AnimatedSection>
 | 
						|
        <CloudOverview />
 | 
						|
      </AnimatedSection>
 | 
						|
      <AnimatedSection>
 | 
						|
        <ComputeStorageSplit />
 | 
						|
      </AnimatedSection>
 | 
						|
      <AnimatedSection>
 | 
						|
        <SecurityPillars />
 | 
						|
      </AnimatedSection>
 | 
						|
      <AnimatedSection>
 | 
						|
        <CloudCTA />
 | 
						|
      </AnimatedSection>
 | 
						|
    </>
 | 
						|
  )
 | 
						|
}
 |