Animated text that reveals each character with a shutter-style sliced blur effect, triggered on load, scroll, click, or hover.
import ShutterText from "@/components/ui/shutter-text"; export default function ShutterTextDemo() { return ( <div className="flex min-h-[300px] w-full items-center justify-center"> <ShutterText text="IMMERSE" className="text-7xl" /> </div> ); }