Components
Loading preview...
Interactive GSAP-powered flair trail that spawns floating images along the cursor path for playful motion graphics effects.
@kedhar
npx shadcn@latest add https://21st.dev/r/kedhareswer.12110626/mouse-trail'use client';
import { MouseTrailComponent } from '@/components/ui/mouse-trail';
export default function DefaultDemo() {
return (
<div className="demo-container">
<MouseTrailComponent />
</div>
);
}