first commit

This commit is contained in:
2025-12-30 15:03:19 +08:00
commit c735c36009
902 changed files with 83591 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
/**
* 倉庫空狀態元件
* 當沒有倉庫資料時顯示
*/
import { Package } from "lucide-react";
export default function WarehouseEmptyState() {
return (
<div className="bg-white rounded-lg shadow-sm border p-12">
<div className="flex flex-col items-center justify-center text-gray-400">
<Package className="h-16 w-16 mb-4" />
<p className="text-lg"></p>
<p className="text-sm mt-2"></p>
</div>
</div>
);
}