An example of linking an animation to scroll using Motion for React's useScroll hook.
"use client" import ScrollLinked from "@/components/ui/motion-scroll-linked" export default function Default() { return ( <div className="motion-example flex w-full items-center justify-center p-4"> <ScrollLinked /> </div> ) }