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