Remove redundant loaders and update styling

Deleted the previously redundant loaders from blog and docs sections. Updated the loading.tsx files in home to utilize the GlobalLoader component with improved styling. Additionally, styling in global-loader.tsx from the ui package has been modified to ensure better visibility.
This commit is contained in:
giancarlo
2024-06-04 17:46:40 +07:00
parent 5f872f26cd
commit d203c9782d
3 changed files with 3 additions and 7 deletions

View File

@@ -1,3 +0,0 @@
import { GlobalLoader } from '@kit/ui/global-loader';
export default GlobalLoader;

View File

@@ -1,3 +0,0 @@
import { GlobalLoader } from '@kit/ui/global-loader';
export default GlobalLoader;

View File

@@ -1,3 +1,5 @@
import { GlobalLoader } from '@kit/ui/global-loader';
export default GlobalLoader;
export default function Loading() {
return <GlobalLoader fullPage />;
}