Components
Loading preview...
A text hover effect that animates and outlines gradient on hover. animate your own way
npx shadcn@latest add https://21st.dev/r/uniquesonu/hover-text-effectimport { TextHoverEffect } from "@/components/ui/hover-text-effect";
const DemoOne = () => {
return (
<div className="h-[40rem] flex items-center justify-center">
<TextHoverEffect text="21st.dev" />
</div>
);
};
export { DemoOne };