Animated Shiny TextA light glare effect which pans across text making it appear as if it is shimmering.textanimationglow PreviewCodeIntroducing Vritti UICopyimport { AnimatedShinyText } from "@/components/vritti/animated-shiny-text"; export function AnimatedShinyTextExample() { return ( <div className="flex items-center justify-center p-8"> <div className="group rounded-full border border-black/5 bg-neutral-100 text-base text-white transition-all ease-in hover:cursor-pointer hover:bg-neutral-200 dark:border-white/5 dark:bg-neutral-900 dark:hover:bg-neutral-800"> <AnimatedShinyText className="inline-flex items-center justify-center px-4 py-1 transition ease-out hover:text-neutral-600 hover:duration-300 hover:dark:text-neutral-400"> <span>Introducing Vritti UI</span> </AnimatedShinyText> </div> </div> ); } Installation CLIManualpnpmnpmyarnbunpnpm dlx shadcn@latest add "https://vritti.thesatyajit.com/r/animated-shiny-text"Copy