Files
www_projectmycelium_com/src/pages/agents/AgentsPage.tsx
2025-10-28 19:47:55 +03:00

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>
)
}