Components
Loading preview...
A cinematic, blur-in text reveal featuring a premium inverted-contrast theme.
@daiv09
npx shadcn@latest add https://21st.dev/r/daiwiikharihar17147/text-revealimport TextReveal from "@/components/ui/text-reveal";
export default function DemoOne() {
return (
// 'bg-zinc-50' for light, 'dark:bg-black' for dark mode
<div className="min-h-screen w-full flex items-center justify-center bg-zinc-50 dark:bg-black p-4 transition-colors">
<div className="w-full max-w-3xl">
<TextReveal word="Theme Aware" />
</div>
</div>
);
}