Files
www_projectmycelium_com/src/pages/agents/AgentsPage.tsx
sasha-astiadi 6ff539b3fc feat: add AgentPro section and refactor AgentUsecase layout
- Created AgentPro component highlighting local execution, mesh connectivity, private data access, and portability advantages
- Replaced horizontal scrolling carousel in AgentUsecase with responsive grid layout
- Added "Blend local + remote intelligence" use case to AgentUsecase
- Removed slider navigation buttons and replaced with static grid display
- Replaced AgentDesign with AgentPro in AgentsPage component order
- Increased hero section padding on
2025-11-17 14:12:17 +01:00

44 lines
966 B
TypeScript

import { AnimatedSection } from '../../components/AnimatedSection'
import { DeploySection } from './DeploySection'
import { Companies } from './Companies'
import { AgentBento } from './AgentBento'
import { AgentHeroAlt } from './AgentHeroAlt'
import { CallToAction } from './CallToAction'
import { AgentUsecase } from './AgentUseCase'
import { AgentPro } from './AgentPro'
export default function AgentsPage() {
return (
<div>
<AnimatedSection>
<AgentHeroAlt />
</AnimatedSection>
<AnimatedSection>
<DeploySection />
</AnimatedSection>
<AnimatedSection>
<Companies />
</AnimatedSection>
<AnimatedSection>
<AgentUsecase />
</AnimatedSection>
<AnimatedSection>
<AgentBento />
</AnimatedSection>
<AnimatedSection>
<AgentPro />
</AnimatedSection>
<AnimatedSection>
<CallToAction />
</AnimatedSection>
</div>
)
}