A 3x3 grid of tiles that bobble with a spring when hovered, with the bounce scaled to how fast the pointer was moving, using Motion for React.
"use client" import BobbleHover from "@/components/ui/motion-bobble-hover" export default function Default() { return ( <div className="motion-example flex w-full items-center justify-center p-8"> <BobbleHover /> </div> ) }