A text component that types out words one character at a time with a blinking cursor, cycling through a list of strings.
import TypingEffect from "../components/ui/typing-effect"; export default function Demo() { return ( <div className="flex items-center justify-center min-h-screen bg-background"> <TypingEffect texts={["Design", "Development", "Marketing"]} /> </div> ); }