aboutsummaryrefslogtreecommitdiff
path: root/src/app/web-series/loading.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/web-series/loading.jsx')
-rw-r--r--src/app/web-series/loading.jsx15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/app/web-series/loading.jsx b/src/app/web-series/loading.jsx
new file mode 100644
index 0000000..63ffdfc
--- /dev/null
+++ b/src/app/web-series/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 Web-series..."
+ />
+ </div>
+ );
+};
+
+export default LoadingScreen;