A React component that creates text vaporization animations using Canvas, with customizable text cycling and particle effects.
import { 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 };