ForgeUIPREMIUM ECOSYSTEM
13+ Motion Primitives Powered by Framer Motion

Animation Playground

Smooth, performance-optimized Framer Motion primitives ready to copy into your Next.js project.

Fade Up Animation Render

Framer Motion Code

Copy and drop directly into any React / Next.js component wrapped with Framer Motion.

<motion.div
  initial={{ opacity: 0, y: 30 }}
  animate={{ opacity: 1, y: 0 }}
  transition={{ duration: 0.6, ease: "easeOut" }}
>
  Fade Up Content
</motion.div>