Files
www_projectmycelium_com/src/pages/agents/AgentsPage.tsx
sasha-astiadi 560ec7dcd0 feat: add agent components section and update agents page content
- Created AgentComponents table showcasing building blocks of sovereign agents
- Added CallToAction section with deployment and documentation links
- Updated hero and deployment sections to clarify agent layer timeline and current capabilities
2025-11-05 13:02:43 +01:00

43 lines
998 B
TypeScript

import { AnimatedSection } from '../../components/AnimatedSection'
import { DeploySection } from './DeploySection'
import { GallerySection } from './GallerySection'
import { Companies } from './Companies'
import { BentoSection } from './BentoSection'
import { AgentHeroAlt } from './AgentHeroAlt'
import { CallToAction } from './CallToAction'
import { AgentComponents } from './AgentComponents'
export default function AgentsPage() {
return (
<div>
<AnimatedSection>
<AgentHeroAlt />
</AnimatedSection>
<AnimatedSection>
<DeploySection />
</AnimatedSection>
<AnimatedSection>
<Companies />
</AnimatedSection>
<AnimatedSection>
<GallerySection />
</AnimatedSection>
<AnimatedSection>
<BentoSection />
</AnimatedSection>
<AnimatedSection>
<AgentComponents />
</AnimatedSection>
<AnimatedSection>
<CallToAction />
</AnimatedSection>
</div>
)
}