Components
npx shadcn@latest add https://21st.dev/r/bundui/animated-textLoading preview...
import 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}
/>
);
}
Loading preview...