Components
Animated text that reveals with a gradient sweep and chromatic wash, with optional multi-phrase cycling, powered by Motion.
Loading preview...
"use client";
import { DiaTextReveal } from "@/components/ui/dia-text-reveal";
export default function DiaTextRevealExample() {
return (
<div className="flex min-h-72 w-full items-center justify-center px-6 py-16">
<p className="text-center font-light text-4xl tracking-tight text-foreground sm:text-5xl">
Make interfaces feel{" "}
<DiaTextReveal
fixedWidth
repeat
repeatDelay={0.5}
text={["smooth.", "focused.", "refined."]}
/>
</p>
</div>
);
}