An endless cursor-driven photo canvas that tiles images infinitely in all directions and pans smoothly toward the cursor.
import { InfiniteImageField } from "@/components/ui/infinite-image-field"; export default function InfiniteImageFieldDemo() { return ( <div className="relative h-[600px] w-full overflow-hidden rounded-xl bg-black"> <InfiniteImageField borderRadius={12} /> </div> ); }