A pointer-led character ripple that travels through text with configurable glyph sets.
string
"letters" | "symbols" | "blocks"
"symbols"
number
900
1
boolean
true
Click on the icon in the top right of the example preview to view the source code for specific variants.
This component is inspired by various open-source projects and patterns. Please verify licenses and implementation details before using in production.
Move across the text
import { WaveText } from "@/components/ui/wave-text"
export default function Page() { return ( <h1 className="text-4xl font-semibold tracking-tight"> <WaveText text="Move through the signal" preset="blocks" /> </h1> ) }