GodUIGodUI
109Follow on X
Scroll to reveal
I reveal on scroll

Scroll Reveal

tsx
import { ScrollReveal } from "@/components/godui/scroll-reveal";export function ScrollRevealDemo() {return (  <ScrollReveal>    <div className="rounded-xl border border-border bg-card p-8 text-lg font-semibold text-foreground shadow-sm">      I reveal on scroll    </div>  </ScrollReveal>);}