forked from emre/www_projectmycelium_com
refactor: clean up unused imports and fix component naming
- Removed unused component imports across multiple page files - Fixed component name casing inconsistencies (CalltoAction → CallToAction, NetworkUseCases → NetworkUsecases) - Changed AgentComponents from default to named export - Removed stray character in NetworkPage.tsx
This commit is contained in:
@@ -4,7 +4,7 @@ import {
|
||||
ServerIcon,
|
||||
ShieldCheckIcon,
|
||||
} from '@heroicons/react/24/outline'
|
||||
import { CP, CT, Eyebrow, H3, P } from '../../components/Texts'
|
||||
import { CP, CT, Eyebrow, H3 } from '../../components/Texts'
|
||||
|
||||
const features = [
|
||||
{
|
||||
|
||||
@@ -2,11 +2,10 @@ import { AnimatedSection } from '../../components/AnimatedSection'
|
||||
import { CloudArchitecture } from './CloudArchitecture'
|
||||
import { CloudFeatures } from './CloudFeatures'
|
||||
import { CloudUseCases } from './CloudUseCases'
|
||||
import { CloudCTA } from './CloudCTA'
|
||||
import { CloudHeroNew } from './CloudHeroNew'
|
||||
import { CloudHosting } from './CloudHosting'
|
||||
import { CloudBluePrint } from './CloudBluePrint'
|
||||
import { CalltoAction } from './CalltoAction'
|
||||
import { CallToAction } from './CalltoAction'
|
||||
|
||||
export default function CloudPage() {
|
||||
return (
|
||||
@@ -37,7 +36,7 @@ export default function CloudPage() {
|
||||
</AnimatedSection>
|
||||
|
||||
<AnimatedSection>
|
||||
<CalltoAction />
|
||||
<CallToAction />
|
||||
</AnimatedSection>
|
||||
</>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user