framer-motion-animations

Installation
SKILL.md

Framer Motion Animations

Installation

npm install framer-motion

Basic Fade In

'use client';

import { motion } from 'framer-motion';

export function FadeIn({ children }: { children: React.ReactNode }) {
  return (
    <motion.div
      initial={{ opacity: 0, y: 20 }}
Related skills

More from canatufkansu/claude-skills

Installs
25
GitHub Stars
2
First Seen
Feb 7, 2026