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.
Box Reveal Demo
atlas-ui/box-reveal-demoRemovedExample
Example of Box Reveal that has a smooth reveal animation that slides a colored overlay away to introduce content as it enters the viewport.
Install it
npx shadcn@latest add https://atlasui.dev/r/box-reveal-demo.jsonSource
1import { BoxReveal } from "@/registry/react/atlasui/box-reveal";23export const BoxRevealDemo = () => {4 return (5 <div className="flex flex-col gap-1">6 <BoxReveal>7 <h1 className="text-5xl font-bold">Atlas UI</h1>8 </BoxReveal>910 <BoxReveal>11 <p className="text-lg font-semibold">12 Because your content deserves a dramatic entrance, not a simple13 fade-in ;)14 </p>15 </BoxReveal>16 </div>17 );18};
What it pulls in
Other registry items
