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.
Reveal Effect Demo
atlas-ui/reveal-effect-demoRemovedExample
Example of Reveal Effect with a vertical slide, blur fade-in, and clipping reveal effect.
Install it
npx shadcn@latest add https://atlasui.dev/r/reveal-effect-demo.jsonSource
1import { RevealEffect } from "@/registry/react/atlasui/reveal-effect";23export const RevealEffectDemo = () => {4 return (5 <div className="flex flex-col items-center space-y-2">6 <RevealEffect>7 <h1 className="text-5xl font-bold">Atlas UI</h1>8 </RevealEffect>910 <RevealEffect delay={0.2} translateY={15}>11 <p className="text-center text-xl font-semibold">12 This is the same effect you saw on the homepage ;)13 </p>14 </RevealEffect>15 </div>16 );17};
What it pulls in
Other registry items
