Components
npx shadcn@latest add https://21st.dev/r/larsen66/glowing-buttonLoading preview...
import { GlowingButton } from "@/components/ui/glowing-button"
export default function GlowingButtonDemo() {
return (
<div className="flex flex-col gap-4">
<GlowingButton>Hover me</GlowingButton>
<GlowingButton glowColor="#ec4899">Hover Me</GlowingButton>
<GlowingButton glowColor="#22d3ee">Hover Me</GlowingButton>
</div>
)
}