GodUIGodUI
109Follow on X

Your invite code

GODUI-2026

Early access

Move your cursor to reveal

Spotlight Reveal

tsx
import { SpotlightReveal } from "@/components/godui/spotlight-reveal";export function Reveal() {return (  <SpotlightReveal    className="aspect-[16/10]"    reveal={      <div className="grid size-full place-items-center bg-primary text-primary-foreground">        <p className="text-3xl font-semibold">You found it</p>      </div>    }  >    <div className="grid size-full place-items-center bg-card">      <p className="text-3xl font-semibold text-foreground">Move your cursor</p>    </div>  </SpotlightReveal>);}