Components
Loading preview...
Here is Smooth Cursor component
npx shadcn@latest add https://21st.dev/r/dillionverma/smooth-cursorimport { SmoothCursor } from "@/components/ui/smooth-cursor";
export default function SmoothCursorDemo() {
return (
<>
<span className="hidden md:block">Move your mouse around</span>
<span className="block md:hidden">Tap anywhere to see the cursor</span>
<SmoothCursor />
</>
);
}