Components
Loading preview...
Here is Glowing Button component
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/glowing-buttonimport { 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>
)
}