Files
www_projectmycelium_com/src/pages/agents/AgentsPage.tsx
sasha-astiadi 8817272932 refactor: improve hero components and naming consistency
- Renamed AgentsHeroAlt component to AgentHeroAlt for consistent singular naming
- Updated hero section padding and spacing for consistent layout across GPU and Storage pages
- Changed Storage hero image object-fit from cover to contain to match GPU hero styling
- Removed redundant padding classes (sm:py-32, xl:pr-32) from hero components
- Fixed indentation in AgentsPage component
2025-11-02 01:03:52 +01:00

33 lines
747 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'
export default function AgentsPage() {
return (
<div>
<AnimatedSection>
<AgentHeroAlt />
</AnimatedSection>
<AnimatedSection>
<DeploySection />
</AnimatedSection>
<AnimatedSection>
<Companies />
</AnimatedSection>
<AnimatedSection>
<GallerySection />
</AnimatedSection>
<AnimatedSection>
<BentoSection />
</AnimatedSection>
</div>
)
}