feat: POP 시연 준비 — 5개 화면 + 버그 수정 + 재고검증

This commit is contained in:
SeongHyun Kim
2026-04-09 14:28:57 +09:00
parent 0d62af8c8b
commit bfac350ed4
25 changed files with 2804 additions and 284 deletions

View File

@@ -0,0 +1,12 @@
"use client";
import { PopShell } from "@/components/pop/hardcoded";
import { InOutHistory } from "@/components/pop/hardcoded/inventory";
export default function InOutHistoryPage() {
return (
<PopShell showBanner={false} title="입출고관리">
<InOutHistory />
</PopShell>
);
}

View File

@@ -0,0 +1,12 @@
"use client";
import { PopShell } from "@/components/pop/hardcoded";
import { InventoryHome } from "@/components/pop/hardcoded/inventory";
export default function InventoryPage() {
return (
<PopShell showBanner={false} title="재고">
<InventoryHome />
</PopShell>
);
}

View File

@@ -0,0 +1,12 @@
"use client";
import { PopShell } from "@/components/pop/hardcoded";
import { InspectionList } from "@/components/pop/hardcoded/quality";
export default function InspectionListPage() {
return (
<PopShell showBanner={false} title="검사관리">
<InspectionList />
</PopShell>
);
}

View File

@@ -0,0 +1,12 @@
"use client";
import { PopShell } from "@/components/pop/hardcoded";
import { QualityHome } from "@/components/pop/hardcoded/quality";
export default function QualityPage() {
return (
<PopShell showBanner={false} title="품질">
<QualityHome />
</PopShell>
);
}