Components
Loading preview...
A clean glowing button that pops off the screen. On hover, a subtle glare slides across the surface, giving it that shiny, futuristic vibe. It also reacts with a soft press animation when clicked, making it feel alive. Works in both light and dark mode without extra setup. Perfect for flashy CTAs like Generate, Start, or Launch.
npx shadcn@latest add https://21st.dev/r/waleedkibhen/glow-buttonimport { Component } from "@/components/ui/glow-button";
export default function Default() {
return (
<div className="flex h-screen w-screen items-center justify-center bg-background text-foreground">
<Component />
</div>
);
}