code base

This commit is contained in:
ANUJ7MADKE
2025-07-13 22:49:55 +05:30
parent d4f21c9a99
commit cd43f0e98e
96 changed files with 17779 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import React from "react";
import { TbLoader3 } from "react-icons/tb";
function Loading() {
return (
<div className="flex flex-col justify-center items-center h-full animate-pulse">
<TbLoader3 className="animate-spin text-xl size-24 text-red-700" />
<p className="mt-2">Loading...</p>
</div>
);
}
export default Loading;