Components
Loading preview...
Animated Hover Button Interactive button with dynamic hover effects that grab attention instantly. Perfect for CTAs, navigation, or any action where engagement matters.
@ravikatiyar
npx shadcn@latest add https://21st.dev/r/ravikatiyar162/buttonimport { AnimatedLayerButton } from "@/components/ui/button"; // Adjust this path as necessary
export default function AnimatedLayerButtonDemo() {
return (
<div className="flex min-h-[250px] w-full items-center justify-center bg-background p-10">
<AnimatedLayerButton>
Hover Me
</AnimatedLayerButton>
</div>
);
}