diff options
Diffstat (limited to 'src/app/loading.jsx')
| -rw-r--r-- | src/app/loading.jsx | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/app/loading.jsx b/src/app/loading.jsx deleted file mode 100644 index 2fd3711..0000000 --- a/src/app/loading.jsx +++ /dev/null @@ -1,15 +0,0 @@ -import { CircularProgress } from "@nextui-org/react"; - -const LoadingScreen = async () => { - return ( - <div className="flex h-[90dvh] w-screen items-center justify-center gap-4"> - <CircularProgress - color="success" - aria-label="Loading..." - label="Loading..." - /> - </div> - ); -}; - -export default LoadingScreen; |