Files
falah-mobile/src/app/store/loading.tsx
T

8 lines
251 B
TypeScript
Raw Normal View History

export default function Loading() {
return (
<div className="min-h-dvh bg-[#0a0a0f] flex items-center justify-center">
<div className="w-8 h-8 rounded-full border-2 border-[#D4AF37]/30 border-t-[#D4AF37] animate-spin" />
</div>
);
}