Components
Reveals text word-by-word, character-by-character, or line-by-line with smooth staggered entrance animations.
Loading preview...
import { TextReveal } from "@/components/ui/text-reveal";
export default function TextRevealHero() {
return (
<div className="flex min-h-50 items-center justify-center px-6">
<TextReveal
as="h1"
className="max-w-2xl text-center font-bold text-4xl text-foreground tracking-tight sm:text-5xl"
per="word"
preset="fade-in-blur"
speedReveal={1.2}
>
Build beautiful interfaces that move with purpose
</TextReveal>
</div>
);
}
Loading preview...
Loading preview...