Spaces:
Running
Running
File size: 1,013 Bytes
8a37195 c7f2f22 8a37195 c7f2f22 8a37195 c7f2f22 8a37195 c7f2f22 8a37195 c7f2f22 8a37195 c7f2f22 8a37195 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | "use client";
export default function Loading() {
return (
<div
className="absolute inset-0 flex flex-col items-center justify-center bg-[var(--bg)]/80 backdrop-blur-sm z-10 text-slate-200"
tabIndex={-1}
aria-modal="true"
role="dialog"
>
<svg
className="animate-spin mb-5 text-cyan-300"
width="42"
height="42"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle
className="opacity-15"
cx="12"
cy="12"
r="10"
stroke="currentColor"
strokeWidth="3"
/>
<path
className="opacity-80"
fill="currentColor"
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z"
/>
</svg>
<h1 className="text-sm font-medium tracking-wide uppercase text-slate-300">
Loading
</h1>
<p className="text-xs text-slate-500 mt-1">preparing data & videos</p>
</div>
);
}
|