feat: implement LoadingSpinner component and replace existing loaders across the application

This commit is contained in:
Junyan Qin
2026-01-29 15:24:23 +08:00
parent 13f42857f5
commit b89a240250
7 changed files with 111 additions and 50 deletions
+5
View File
@@ -0,0 +1,5 @@
import { LoadingPage } from '@/components/ui/loading-spinner';
export default function Loading() {
return <LoadingPage />;
}