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