Components
An animated text component that glides swapping phrases in from the left as one compact unit while words reveal in sequence through an opacity stagger.
Loading preview...
import ShortSlideRight from "@/components/ui/short-slide-right";
export default function ShortSlideRightDemo() {
return (
<div className="flex min-h-[320px] w-full items-center justify-center bg-background p-8">
<h2 className="text-4xl font-bold tracking-tight text-foreground sm:text-5xl">
<ShortSlideRight
phrases={[
"Move with intent.",
"Design with clarity.",
"Build with purpose.",
]}
interval={2500}
/>
</h2>
</div>
);
}