Components
Loading preview...
Animated text with scramble effect.
npx shadcn@latest add https://21st.dev/r/tom_ui/special-textimport { SpecialText } from "@/components/ui/special-text"
export default function Demo() {
return (
<div className="flex items-center justify-center min-h-[400px] p-8">
<SpecialText className="text-4xl font-bold">Make it beautiful</SpecialText>
</div>
)
}