Components
Loading preview...
A React component that creates text vaporization animations using Canvas, with customizable text cycling and particle effects.
@jatin-yadav05
npx shadcn@latest add https://21st.dev/r/jatin-yadav05/vapour-text-effectimport { Component } from "@/components/ui/vapour-text-effect";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<Component />
</div>
);
};
export { DemoOne };