Components
Loading preview...
Here is Animated Text component
@bundui
npx shadcn@latest add https://21st.dev/r/bundui/animated-textimport AnimatedText from "@/components/ui/animated-text";
export default function Example() {
return (
<AnimatedText
text="Welcome to the Future"
className="text-4xl font-bold"
animationType="letters"
staggerDelay={0.08}
duration={0.6}
/>
);
}