This component no longer exists. It was in atlas-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-13 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Cascade Text Demo
atlas-ui/cascade-text-demoRemovedExample
Example of Cascade Text with a smooth line-by-line reveal.
Install it
npx shadcn@latest add https://atlasui.dev/r/cascade-text-demo.jsonSource
1import { CascadeText } from "@/registry/react/atlasui/cascade-text";23export const CascadeTextDemo = () => {4 return (5 <div className="flex flex-col gap-4 p-5">6 <CascadeText>7 <h1 className="text-[2.5rem] font-medium tracking-tighter">8 Seen This on Awwwards? Same Energy.9 </h1>10 </CascadeText>1112 <CascadeText delay={0.2}>13 <p className="text-muted-foreground text-base font-medium">14 You could reveal everything instantly. You could also microwave a15 steak. We chose patience. Because good interfaces, like good food,16 deserve a little timing and a little respect.17 </p>18 </CascadeText>1920 <CascadeText delay={0.4}>21 <p className="text-muted-foreground text-base font-medium">22 Cascade Text brings in each line with just enough drama to feel23 intentional, and just enough restraint to keep it classy. No24 attention-seeking theatrics. Just a steady, confident rise that feels25 composed from start to finish.26 </p>27 </CascadeText>2829 <CascadeText delay={0.6}>30 <p className="text-muted-foreground text-base font-medium">31 It's smooth. It's subtle. It doesn't beg for attention.32 It just quietly says, “Yeah… this UI knows what it's33 doing.” Because when motion is done right, users don't34 notice the animation. They notice how effortless everything feels. And35 that quiet effortlessness? That's the whole point.36 </p>37 </CascadeText>3839 <CascadeText delay={0.8}>40 <p className="text-muted-foreground text-base font-medium">41 I'm quite surprised that you are still reading this. But I'm42 glad you made it this far. So go ahead and explore the rest of the43 Atlas UI components.44 </p>45 </CascadeText>46 </div>47 );48};
What it pulls in
Other registry items
