Components
An animated text component that vertically rolls through a sequence of status messages with smooth transitions.
Loading preview...
import AnimatedTextRoller from "@/components/ui/animated-text-04";
export default function AnimatedTextRollerDemo() {
return (
<div className="flex min-h-[300px] w-full items-center justify-center bg-background p-8 text-foreground">
<AnimatedTextRoller />
</div>
);
}