forked from sashaastiadi/www_mycelium_net
feat: wrap homepage sections in AnimatedSection components for scroll animations
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
|
import { AnimatedSection } from '@/components/AnimatedSection'
|
||||||
import { CallToAction } from '@/components/CallToAction'
|
import { CallToAction } from '@/components/CallToAction'
|
||||||
import { Faqs } from '@/components/Faqs'
|
import { Faqs } from '@/components/Faqs'
|
||||||
import { Hero } from '@/components/Hero'
|
import { Hero } from '@/components/Hero'
|
||||||
import { Pricing } from '@/components/Pricing'
|
|
||||||
import { PrimaryFeatures } from '@/components/PrimaryFeatures'
|
import { PrimaryFeatures } from '@/components/PrimaryFeatures'
|
||||||
import { UseCases } from '@/components/UseCases'
|
import { UseCases } from '@/components/UseCases'
|
||||||
import { SecondaryFeatures } from '@/components/SecondaryFeatures'
|
import { SecondaryFeatures } from '@/components/SecondaryFeatures'
|
||||||
@@ -11,14 +11,30 @@ import { About } from '@/components/About'
|
|||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
<AnimatedSection>
|
||||||
<Hero />
|
<Hero />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
<About />
|
<About />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
<Benefits />
|
<Benefits />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
<PrimaryFeatures />
|
<PrimaryFeatures />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
<UseCases />
|
<UseCases />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
<CallToAction />
|
<CallToAction />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
<SecondaryFeatures />
|
<SecondaryFeatures />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
<Faqs />
|
<Faqs />
|
||||||
|
</AnimatedSection>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
23
src/components/AnimatedSection.tsx
Normal file
23
src/components/AnimatedSection.tsx
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import { useRef } from 'react'
|
||||||
|
import { motion, useInView } from 'framer-motion'
|
||||||
|
|
||||||
|
export function AnimatedSection({ children }: { children: React.ReactNode }) {
|
||||||
|
const ref = useRef(null)
|
||||||
|
const isInView = useInView(ref, { once: false, margin: '-50% 0px -50% 0px' })
|
||||||
|
|
||||||
|
return (
|
||||||
|
<motion.section
|
||||||
|
ref={ref}
|
||||||
|
initial={{ opacity: 0, y: 50 }}
|
||||||
|
animate={{
|
||||||
|
opacity: isInView ? 1 : 0,
|
||||||
|
y: isInView ? 0 : 50,
|
||||||
|
}}
|
||||||
|
transition={{ duration: 0.5 }}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</motion.section>
|
||||||
|
)
|
||||||
|
}
|
Reference in New Issue
Block a user