import { cn } from "@/lib/utils"; interface IProps { className?: string | null; } /** * Full-screen route-style loader (orbs, rings, shimmer). Pass `className` to adapt * the shell—for example `min-h-48 flex-none` inside compact panels. */ const Loading = ({ className }: IProps) => { return ( <>
{/* Soft gradient wash */}
{/* Floating orbs */}
{/* Subtle grid */}
{/* Outer glow */}
{/* Concentric rings */}
{/* Core */}
OL

Preparing your workspace…

{/* Shimmer bar */}
); }; export default Loading;