This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { useEffect, useRef } from "react" | |
| import { motion, useMotionValue, useSpring } from "framer-motion" | |
| import type { ComponentType } from "react" | |
| // ─── Config ──────────────────────────────────────────────────────────────── | |
| // How far (in px) the element can travel from its resting position | |
| const MAX_DISTANCE = 20 | |
| // How strong the pull is (0–1). Higher = snaps closer to cursor faster | |
| const PULL_STRENGTH = 0.35 |