client frontend added

This commit is contained in:
2025-05-19 23:12:23 +03:00
parent 5f7cb35ccc
commit fdf9d2edb8
507 changed files with 40655 additions and 510 deletions

View File

@@ -0,0 +1,10 @@
import { Loader2 } from "lucide-react";
const LoadingContent: React.FC<{ height: string, size: string, plane: string }> = ({ height = "h-16", size = "w-36 h-48", plane = "h-full w-full" }) => {
return <>
<div className={`flex items-center justify-center ${plane}`}>
<div className={height}><Loader2 className={`animate-spin ${size}`} /></div>
</div></>
}
export default LoadingContent