manufacturing

This commit is contained in:
2026-03-15 11:12:58 -05:00
parent 6644ba2932
commit 0596970b99
25 changed files with 2097 additions and 37 deletions

View File

@@ -16,6 +16,7 @@ const links = [
{ to: "/purchasing/orders", label: "Purchase Orders", icon: <PurchaseOrderIcon /> },
{ to: "/shipping/shipments", label: "Shipments", icon: <ShipmentIcon /> },
{ to: "/projects", label: "Projects", icon: <ProjectsIcon /> },
{ to: "/manufacturing/work-orders", label: "Manufacturing", icon: <ManufacturingIcon /> },
{ to: "/planning/gantt", label: "Gantt", icon: <GanttIcon /> },
];
@@ -170,6 +171,18 @@ function ProjectsIcon() {
);
}
function ManufacturingIcon() {
return (
<NavIcon>
<circle cx="8" cy="16" r="2" />
<circle cx="16" cy="16" r="2" />
<path d="M8 14V8l4-2 4 2v6" />
<path d="M12 10h6" />
<path d="M18 8v4" />
</NavIcon>
);
}
export function AppShell() {
const { user, logout } = useAuth();