aboutsummaryrefslogtreecommitdiff
path: root/components/shared/loading.js
diff options
context:
space:
mode:
authorFactiven <[email protected]>2023-12-24 13:03:54 +0700
committerFactiven <[email protected]>2023-12-24 13:03:54 +0700
commit50a0f0240d7fef133eb5acc1bea2b1168b08e9db (patch)
tree307e09e505580415a58d64b5fc3580e9235869f1 /components/shared/loading.js
parentUpdate README.md (#104) (diff)
downloadmoopa-50a0f0240d7fef133eb5acc1bea2b1168b08e9db.tar.xz
moopa-50a0f0240d7fef133eb5acc1bea2b1168b08e9db.zip
migrate to typescript
Diffstat (limited to 'components/shared/loading.js')
-rw-r--r--components/shared/loading.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/components/shared/loading.js b/components/shared/loading.js
deleted file mode 100644
index 4620645..0000000
--- a/components/shared/loading.js
+++ /dev/null
@@ -1,20 +0,0 @@
-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>
- </>
- );
-}