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.
6 lines
129 B
TypeScript
6 lines
129 B
TypeScript
import { GlobalLoader } from '@kit/ui/global-loader';
|
|
|
|
export default function Loading() {
|
|
return <GlobalLoader fullPage />;
|
|
}
|