Components
Component that displays a wavy text with gradient fill, using CSS clip-path animation for a dynamic effect.
Loading preview...
import WavyAnimation from "@/components/ui/gradient-wavy-animation";
const DemoOne = () => {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-black">
<WavyAnimation />
</div>
);
};
export { DemoOne };