Components
Loading preview...
Component creates a sophisticated 3D loading animation
npx shadcn@latest add https://21st.dev/r/minhxthanh/3d-box-loader-animationimport Loader from "@/components/ui/3d-box-loader-animation";
const DemoOne = () => {
return (
<div className="flex w-full h-min-screen items-center justify-center min-h-screen bg-gray-200">
<Loader />
</div>
);
};
export { DemoOne };