forked from emre/www_projectmycelium_com
- 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
44 lines
966 B
TypeScript
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>
|
|
)
|
|
}
|