Minimal loader with a bell that blinks softly during work and illuminates fully when done.
import { BellLoader } from "@/components/ui/bell-glow-loader"; export default function DemoOne() { return ( <div className="h-screen"> <BellLoader autoStart // start loading on mount durationMs={3500} // total loading time doneLabel="Loaidng Completed!" onComplete={() => console.log('Loading complete')} /> </div> ); }