Smooth Cursor

A smooth cursor component that follows mouse movement.

Tap anywhere to see the cursor

Usage

import { SmoothCursor } from "@/components/bynanaui/smooth-cursor";

export 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 />
    </>
  );
}