Components
Loading preview...
An animated file bucket component with drag interactions.
npx shadcn@latest add https://21st.dev/r/0xUrvish/bucket"use client";
import Bucket from "@/components/ui/bucket";
export default function Demo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background p-8">
<Bucket />
</div>
);
}