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
This commit is contained in:
2025-11-05 13:02:43 +01:00
parent aaf02d0a7c
commit 560ec7dcd0
6 changed files with 159 additions and 9 deletions

View File

@@ -4,6 +4,8 @@ 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 (
@@ -27,6 +29,14 @@ export default function AgentsPage() {
<AnimatedSection>
<BentoSection />
</AnimatedSection>
<AnimatedSection>
<AgentComponents />
</AnimatedSection>
<AnimatedSection>
<CallToAction />
</AnimatedSection>
</div>
)
}