A text hover effect that animates and outlines gradient on hover. animate your own way
import { 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 };