Components
An animated loading indicator that cycles through random symbol, binary, or hex characters before resolving into readable text, like a terminal decoding cipher.
Loading preview...
import { LoaderTerminalDecode } from "@/components/ui/loader-terminal-decode";
export default function Default() {
return (
<div className="flex min-h-[300px] w-full items-center justify-center bg-background">
<LoaderTerminalDecode
text="LOADING"
className="text-2xl tracking-widest"
/>
</div>
);
}