This commit is contained in:
2026-06-02 10:23:09 +03:00
parent e08d555b23
commit 0c87eaef46
136 changed files with 16069 additions and 94 deletions

11
components/LockBanner.tsx Normal file
View File

@@ -0,0 +1,11 @@
export function LockBanner() {
return (
<div className="w-full bg-gray-100 border-2 border-border rounded-xl p-4 flex items-center gap-3">
<span className="text-xl">&#x1f512;</span>
<div>
<p className="font-medium text-fg">This order is closed and cannot be edited.</p>
<p className="text-sm text-muted">All fields are read-only. Change the status to reopen editing.</p>
</div>
</div>
);
}