Components
An endless cursor-driven photo canvas that tiles images infinitely in all directions and pans smoothly toward the cursor.
npx @21st-dev/cli add componentry/infinite-image-fieldLoading preview...
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>
);
}