improvements

This commit is contained in:
Emre
2025-10-24 02:17:33 +03:00
parent 644bb34419
commit 3a7aa82ff7
34 changed files with 740 additions and 442 deletions

View File

@@ -1,4 +1,5 @@
import { AnimatedSection } from '../../components/AnimatedSection'
import { AgentsHero } from './AgentsHero'
import { DeploySection } from './DeploySection'
import { GallerySection } from './GallerySection'
import { Companies } from './Companies'
@@ -7,6 +8,18 @@ import { BentoSection } from './BentoSection'
export default function AgentsPage() {
return (
<div>
<AnimatedSection>
<AgentsHero />
</AnimatedSection>
<AnimatedSection>
<BentoSection />
</AnimatedSection>
<AnimatedSection>
<GallerySection />
</AnimatedSection>
<AnimatedSection>
<DeploySection />
</AnimatedSection>
@@ -14,15 +27,6 @@ export default function AgentsPage() {
<AnimatedSection>
<Companies />
</AnimatedSection>
<AnimatedSection>
<GallerySection />
</AnimatedSection>
<AnimatedSection>
<BentoSection />
</AnimatedSection>
</div>
)
}