Components
Loading preview...
A text component that types out words one character at a time with a blinking cursor, cycling through a list of strings.
@Shatlyk1011
npx shadcn@latest add https://21st.dev/r/Shatlyk1011/typing-effectimport 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>
);
}