Target CursorA target-style cursor effect.animationcursor PreviewCodeMove your cursor hereCopy"use client"; import { useRef } from "react"; import TargetCursor from "@/components/vritti/target-cursor"; export function TargetCursorExample() { const containerRef = useRef<HTMLDivElement>(null); return ( <div ref={containerRef} className="relative w-full h-[400px] bg-neutral-900 rounded-lg flex items-center justify-center"> <TargetCursor containerRef={containerRef} /> <p className="text-white/60 text-sm pointer-events-none select-none cursor-target">Move your cursor here</p> </div> ); } Installation CLIManualpnpmnpmyarnbunpnpm dlx shadcn@latest add "https://vritti.thesatyajit.com/r/target-cursor"Copy Dependencies pnpmnpmyarnbunpnpm add gsapCopy