Animation

Add animations to elements to show them by scrolling. For further plugin documentation please visit framer motion docs

Fadein Animation

What types of services does your agency serves?

Our agency specializes in a wide range of services including web design, digital marketing, branding, and content creation.

View example's code

import { FadeIn } from "@/components/fade-in";

<FadeIn className="not-prose">
  <div className="max-w-xl bg-primary text-white p-5 rounded-lg text-white/80">
    <h3 className="font-bold text-lg mb-2 text-white">
      What types of services does your agency serves?
    </h3>
    Our agency specializes in a wide range of services including web design, digital
    marketing, branding, and content creation.
  </div>
</FadeIn>;

Fadein Stagger Animation

What types of services does your agency serves?

Our agency specializes in a wide range of services including web design, digital marketing, branding, and content creation.

How do i get started?

Getting started is easy! Simply reach out to us via our contact page or email, and one of our representatives will get in touch with you to discuss your project needs.

View example's code

import { FadeIn, FadeInStagger } from "@/components/fade-in";

<FadeInStagger className="space-y-4">
  <FadeIn className="not-prose">
    <div className="max-w-xl bg-primary text-white p-5 rounded-lg text-white/80">
      <h3 className="font-bold text-lg mb-2 text-white">
        What types of services does your agency serves?
      </h3>
      Our agency specializes in a wide range of services including web design, digital
      marketing, branding, and content creation.
    </div>
  </FadeIn>
  <FadeIn className="not-prose">
    <div className="max-w-xl bg-primary text-white p-5 rounded-lg text-white/80">
      <h3 className="font-bold text-lg mb-2 text-white">
        How do i get started?
      </h3>
      Getting started is easy! Simply reach out to us via our contact page or email,
      and one of our representatives will get in touch with you to discuss your project
      needs.
    </div>
  </FadeIn>
</FadeInStagger>;