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