An animated text effect that scrambles and cycles through random characters before revealing the final text on hover or load.
import { HyperText } from "@/components/ui/hyper-text"; export default function HyperTextDemo() { return ( <div className="flex min-h-[300px] w-full items-center justify-center"> <HyperText text="Hyper Text" className="text-4xl font-bold" /> </div> ); }