Components
Loading preview...
A beautiful button component with animated gradient background and border effects, inspired by Aaron Iker's implementation of James design concept. Features - Smooth gradient animations on hover - Glowing border effect - Multiple color variants - Fully accessible - CSS-only animations - Dark mode support
npx shadcn@latest add https://21st.dev/r/serafimcloud/gradient-buttonimport { GradientButton } from "@/components/ui/gradient-button"
function Demo() {
return (
<div className="flex gap-8">
<GradientButton>Get Started</GradientButton>
<GradientButton variant="variant">Get Started</GradientButton>
</div>
)
}
export { Demo }