Components
Interactive heading text whose individual letters push away from or pull toward the cursor with springy motion.
Loading preview...
import { TextRepel } from "@/components/ui/text-repel";
export default function TextRepelDemo() {
return (
<div className="flex min-h-[400px] w-full items-center justify-center bg-background p-8">
<TextRepel
text="Repel"
className="text-6xl font-bold tracking-tight text-foreground sm:text-8xl"
/>
</div>
);
}