Components
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.
Loading preview...
import { 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>
);
}