Files
myeasycms-v2/apps/web/app/home/loading.tsx
giancarlo d203c9782d 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.
2024-06-04 17:46:40 +07:00

6 lines
129 B
TypeScript

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