Components
Loading preview...
A text animation component that smoothly rotates through an array of words with customizable duration and motion effects.
@molecule-ui
npx shadcn@latest add https://21st.dev/r/molecule-lab-rushil/word-rotateimport { WordRotate } from "@/components/ui/word-rotate";
export default function DemoOne() {
return <WordRotate duration={1500} className="text-5xl font-semibold"
words={["Fast", "Smooth", "Beautiful"]} />;
}