Components
A per-character text reveal where letters rise up from below in a staggered staircase, built with Motion.
Loading preview...
import BottomUpLetters from "@/components/ui/bottom-up-letters";
export default function BottomUpLettersDemo() {
return (
<div className="flex min-h-[320px] w-full items-center justify-center bg-background p-8">
<div className="text-center leading-tight tracking-tight text-foreground">
<BottomUpLetters className="block text-6xl font-semibold">
Design.
</BottomUpLetters>
<BottomUpLetters
className="block text-3xl font-medium text-muted-foreground"
delay={400}
>
Build.
</BottomUpLetters>
</div>
</div>
);
}