forked from emre/www_projectmycelium_com
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			752 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			752 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { AnimatedSection } from '../../components/AnimatedSection'
 | 
						|
import { DeploySection } from './DeploySection'
 | 
						|
import { GallerySection } from './GallerySection'
 | 
						|
import { Companies } from './Companies'
 | 
						|
import { BentoSection } from './BentoSection'
 | 
						|
import { AgentsHeroAlt } from './AgentsHeroAlt'
 | 
						|
 | 
						|
export default function AgentsPage() {
 | 
						|
  return (
 | 
						|
    <div>
 | 
						|
      <AnimatedSection>
 | 
						|
        <AgentsHeroAlt />
 | 
						|
      </AnimatedSection>
 | 
						|
 | 
						|
      <AnimatedSection>
 | 
						|
        <DeploySection />
 | 
						|
      </AnimatedSection>
 | 
						|
 | 
						|
      <AnimatedSection>
 | 
						|
        <Companies />
 | 
						|
      </AnimatedSection>
 | 
						|
 | 
						|
      <AnimatedSection>
 | 
						|
        <GallerySection />
 | 
						|
      </AnimatedSection>
 | 
						|
 | 
						|
      <AnimatedSection>
 | 
						|
        <BentoSection />
 | 
						|
      </AnimatedSection>
 | 
						|
    </div>
 | 
						|
  )
 | 
						|
}
 |