Components
Loading preview...
Hover Text Glow
npx shadcn@latest add https://21st.dev/r/erikvalencia1/hover-text-glowimport { Component } from "@/components/ui/hover-text-glow";
export default function DemoTextHoverEffect() {
return (
<div className="flex h-[300px] w-full items-center justify-center bg-background">
<Component text="Hover Me" duration={0.3} />
</div>
);
}