A vertical rotation of words.
1import { WordRotate } from "@/components/magicui/word-rotate";
2
3export function WordRotateDemo() {
4 return (
5 <WordRotate
6 className="text-4xl font-bold text-black dark:text-white"
7 words={["Word", "Rotate"]}
8 />
9 );
10}