BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/atlas-ui/box-reveal
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

atlas-ui/box-reveal
RemovedComponent

A smooth reveal animation that slides a colored overlay away to introduce content as it enters the viewport.

Live preview

live · rendered by the registry
Rendered by atlas-ui on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add https://atlasui.dev/r/box-reveal.json

Source

registry/react/atlasui/box-reveal.tsxatlasui.dev/r/box-reveal.json
1"use client";
2
3import { useEffect, useRef } from "react";
4
5import { motion, useAnimation, useInView } from "motion/react";
6
7import { cn } from "@/lib/utils";
8
9interface BoxRevealProps {
10 children: React.ReactNode;
11 side?: "left" | "right";
12 width?: "fit-content" | "full";
13 color?: string;
14 className?: string;
15}
16
17export const BoxReveal = ({
18 children,
19 side = "left",
20 width = "fit-content",
21 color = "#FACC15",
22 className,
23}: BoxRevealProps) => {
24 const ref = useRef(null);
25 const isInView = useInView(ref, { once: true });
26
27 const contentAnimation = useAnimation();
28 const overlayAnimation = useAnimation();
29
30 useEffect(() => {
31 if (isInView) {
32 contentAnimation.start("visible");
33 overlayAnimation.start("visible");
34 }
35 }, [isInView, contentAnimation, overlayAnimation]);
36
37 return (
38 <div
39 ref={ref}
40 className={cn(
41 "relative overflow-hidden",
42 width === "full" ? "w-full" : "w-fit",
43 className
44 )}
45 >
46 <motion.div
47 variants={{
48 hidden: { opacity: 0, y: 75 },
49 visible: { opacity: 1, y: 0 },
50 }}
51 initial="hidden"
52 animate={contentAnimation}
53 transition={{ duration: 0.5, delay: 0.35 }}
54 viewport={{ once: true }}
55 >
56 {children}
57 </motion.div>
58
59 <motion.div
60 variants={{
61 hidden: side === "right" ? { right: 0 } : { left: 0 },
62 visible: side === "right" ? { right: "100%" } : { left: "100%" },
63 }}
64 initial="hidden"
65 animate={overlayAnimation}
66 transition={{ duration: 0.5, ease: "easeIn" }}
67 viewport={{ once: true }}
68 className="pointer-events-none absolute inset-0 top-1 bottom-1 z-20"
69 style={{
70 background: color,
71 }}
72 />
73 </div>
74 );
75};

What it pulls in

npm packages

  • motion

Other registry items

  • utils

Files it writes

  • registry/react/atlasui/box-reveal.tsx

Facts

Registry
atlas-ui
Type
registry:component
Access
Free
Files written
1
Licence
MIT
In the index
at or before 2026-08-09
Last confirmed
6 days ago

Go to the source

Docs on atlas-ui atlasui.dev SnehdeepDupare/atlas-ui on GitHub Raw registry item This item as JSON

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex