feat(frontend): ocp added

This commit is contained in:
2025-03-04 16:43:25 -06:00
parent 88f2cf07f5
commit 5b9cadb76e
10 changed files with 183 additions and 40 deletions

View File

@@ -0,0 +1,30 @@
import LabelLog from "./LabelLog";
import Lots from "./Lots";
import OcpLogs from "./OcpLogs";
import PrinterStatus from "./PrinterStatus";
export default function OCPPage() {
return (
<div className="h-dvh w-full overflow-hidden">
<div className="flex flex-wrap gap-2">
<div className="flex flex-col w-4/5 h-dvh">
<div className="">
<Lots />
</div>
<div className="flex flex-row">
<div className="w-1/2">
<LabelLog />
</div>
<div className="w-1/2">
<OcpLogs />
</div>
</div>
</div>
<div className="w-1/6">
<PrinterStatus />
</div>
</div>
</div>
);
}