diff options
Diffstat (limited to 'components/shared/loading.tsx')
| -rw-r--r-- | components/shared/loading.tsx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/components/shared/loading.tsx b/components/shared/loading.tsx new file mode 100644 index 0000000..902b6f9 --- /dev/null +++ b/components/shared/loading.tsx @@ -0,0 +1,16 @@ +export default function Loading() { + return ( + <div className="flex-center flex-col font-karla z-40 gap-2"> + {/* <div className="flex flex-col gap-5 items-center justify-center w-full z-50"> */} + {/* <Image + src="/wait-animation.gif" + width="0" + height="0" + className="w-[30%] h-[30%]" + /> */} + <p>Please Wait...</p> + <div className="loader"></div> + {/* </div> */} + </div> + ); +} |