Components
Loading preview...
stylish following tech cursor component for modern UIs, built with accessibility and animation in mind.
npx shadcn@latest add https://21st.dev/r/mdafsarx/tech-curosrimport React from "react";
import TechCursor from "@/components/ui/tech-curosr";
const TechCursorDemo = () => {
return (
<>
<p className="text-3xl text-center pt-4 text-[#3ca2fa] font-bold">
Move cursor to see the effect.
</p>
<TechCursor />
</>
);
};
export default TechCursorDemo;