GodUIGodUI
109Follow on X

Move your cursor

Images trail the pointer and drift away.

Image Trail

tsx
import { ImageTrail } from "@/components/godui/image-trail";const images = ["/photos/1.jpg", "/photos/2.jpg", "/photos/3.jpg","/photos/4.jpg", "/photos/5.jpg", "/photos/6.jpg",];export function Hero() {return (  <ImageTrail images={images} className="grid h-[26rem] place-items-center">    <h2 className="pointer-events-none text-2xl font-semibold text-foreground">Move your cursor</h2>  </ImageTrail>);}