aboutsummaryrefslogtreecommitdiff
path: root/components/shared/loading.js
diff options
context:
space:
mode:
authorFactiven <[email protected]>2023-09-13 00:45:53 +0700
committerGitHub <[email protected]>2023-09-13 00:45:53 +0700
commit7327a69b55a20b99b14ee0803d6cf5f8b88c45ef (patch)
treecbcca777593a8cc4b0282e7d85a6fc51ba517e25 /components/shared/loading.js
parentUpdate issue templates (diff)
downloadmoopa-7327a69b55a20b99b14ee0803d6cf5f8b88c45ef.tar.xz
moopa-7327a69b55a20b99b14ee0803d6cf5f8b88c45ef.zip
Update v4 - Merge pre-push to main (#71)
* Create build-test.yml * initial v4 commit * update: github workflow * update: push on branch * Update .github/ISSUE_TEMPLATE/bug_report.md * configuring next.config.js file
Diffstat (limited to 'components/shared/loading.js')
-rw-r--r--components/shared/loading.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/components/shared/loading.js b/components/shared/loading.js
new file mode 100644
index 0000000..4620645
--- /dev/null
+++ b/components/shared/loading.js
@@ -0,0 +1,20 @@
+import Image from "next/image";
+
+export default function Loading() {
+ return (
+ <>
+ <div className="flex flex-col gap-5 items-center justify-center w-full z-[800]">
+ {/* <Image
+ src="/wait-animation.gif"
+ width="0"
+ height="0"
+ className="w-[30%] h-[30%]"
+ /> */}
+ <div className="flex flex-col items-center font-karla gap-2">
+ <p>Please Wait...</p>
+ <div className="loader"></div>
+ </div>
+ </div>
+ </>
+ );
+}