Components
Loading preview...
The Magical Mouse component creates a magical mouse effect. It supports hover effects, color changes, and pixel shape customization.
@bucharitesh
npx shadcn@latest add https://21st.dev/r/bucharitesh/magic-cursorimport { Component } from "@/components/ui/magic-cursor";
export default function DemoOne() {
return (
<div
className="w-screen h-screen bg-white overflow-hidden"
style={{
background:
"linear-gradient(145deg, rgb(119, 46, 195), rgb(58, 18, 153))",
}}
>
<Component />
</div>
);
}