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:
@@ -1,6 +1,5 @@
|
||||
import { AnimatedSection } from '../../components/AnimatedSection'
|
||||
import { Hero } from './Hero'
|
||||
import { About } from './About'
|
||||
import { Features } from './Features'
|
||||
import { PrimaryFeatures } from './PrimaryFeatures'
|
||||
import { SecondaryFeatures } from './SecondaryFeatures'
|
||||
@@ -35,7 +34,7 @@ export default function NetworkPage() {
|
||||
<SecondaryFeatures />
|
||||
</AnimatedSection>
|
||||
|
||||
ß <AnimatedSection>
|
||||
<AnimatedSection>
|
||||
<CallToAction />
|
||||
</AnimatedSection>
|
||||
</>
|
||||
|
||||
@@ -25,7 +25,7 @@ const networkUseCases = [
|
||||
},
|
||||
]
|
||||
|
||||
export function NetworkUseCases() {
|
||||
export function NetworkUsecases() {
|
||||
return (
|
||||
<section className="bg-white py-24 sm:py-32">
|
||||
<Container>
|
||||
|
||||
Reference in New Issue
Block a user