blob: 902b6f96eba4d2e730e49da47ca738fc6776838e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
);
}
|