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 { Faqs } from '@/components/Faqs'
 | 
			
		||||
import { Hero } from '@/components/Hero'
 | 
			
		||||
import { Pricing } from '@/components/Pricing'
 | 
			
		||||
import { PrimaryFeatures } from '@/components/PrimaryFeatures'
 | 
			
		||||
import { UseCases } from '@/components/UseCases'
 | 
			
		||||
import { SecondaryFeatures } from '@/components/SecondaryFeatures'
 | 
			
		||||
@@ -11,14 +11,30 @@ import { About } from '@/components/About'
 | 
			
		||||
export default function Home() {
 | 
			
		||||
  return (
 | 
			
		||||
    <>
 | 
			
		||||
      <Hero />
 | 
			
		||||
      <About />
 | 
			
		||||
      <Benefits />
 | 
			
		||||
      <PrimaryFeatures />
 | 
			
		||||
       <UseCases />
 | 
			
		||||
      <CallToAction />
 | 
			
		||||
      <SecondaryFeatures />
 | 
			
		||||
      <Faqs />
 | 
			
		||||
      <AnimatedSection>
 | 
			
		||||
        <Hero />
 | 
			
		||||
      </AnimatedSection>
 | 
			
		||||
      <AnimatedSection>
 | 
			
		||||
        <About />
 | 
			
		||||
      </AnimatedSection>
 | 
			
		||||
      <AnimatedSection>
 | 
			
		||||
        <Benefits />
 | 
			
		||||
      </AnimatedSection>
 | 
			
		||||
      <AnimatedSection>
 | 
			
		||||
        <PrimaryFeatures />
 | 
			
		||||
      </AnimatedSection>
 | 
			
		||||
      <AnimatedSection>
 | 
			
		||||
        <UseCases />
 | 
			
		||||
      </AnimatedSection>
 | 
			
		||||
      <AnimatedSection>
 | 
			
		||||
        <CallToAction />
 | 
			
		||||
      </AnimatedSection>
 | 
			
		||||
      <AnimatedSection>
 | 
			
		||||
        <SecondaryFeatures />
 | 
			
		||||
      </AnimatedSection>
 | 
			
		||||
      <AnimatedSection>
 | 
			
		||||
        <Faqs />
 | 
			
		||||
      </AnimatedSection>
 | 
			
		||||
    </>
 | 
			
		||||
  )
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user