Initial commit - ERP System

This commit is contained in:
root
2026-05-20 18:58:23 +00:00
commit e174936997
2697 changed files with 1628427 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
export default function Loading() {
return (
<div className="h-[400px] flex items-center justify-center">
<div className="flex flex-col items-center gap-4">
<div className="w-12 h-12 border-4 border-indigo-600 border-t-transparent rounded-full animate-spin"></div>
<p className="text-sm font-medium text-slate-500 animate-pulse">Inhalte werden geladen...</p>
</div>
</div>
);
}