Components
Loading preview...
A visually distinct button component featuring a configurable, animated glow effect to highlight calls to action or important interactions.
npx shadcn@latest add https://21st.dev/r/badtzx0/glowing-buttonimport { Component } from "@/components/ui/glowing-button";
const DemoOne = () => {
return (
<div className="flex flex-col gap-4 w-full h-screen justify-center items-center">
<Component>Hover me</Component>
<Component glowColor="#ec4899">Hover me</Component>
<Component glowColor="#22d3ee">Hover me</Component>
</div>
);
};
export { DemoOne };