Components
Animated text that uses a GIF as the fill color via background-clip, with a loading state.
Loading preview...
import GifText from "@/components/ui/gif-text";
export default function GifTextDemo() {
return (
<GifText
text="CHAMAAC"
gif="https://assets.amarn.me/gif-text.gif"
containerClassName="h-[400px] w-full"
/>
);
}