This commit is contained in:
2026-03-15 10:13:53 -05:00
parent 552d4e2844
commit 6644ba2932
30 changed files with 1768 additions and 64 deletions

View File

@@ -15,6 +15,7 @@ const links = [
{ to: "/sales/orders", label: "Sales Orders", icon: <SalesOrderIcon /> },
{ to: "/purchasing/orders", label: "Purchase Orders", icon: <PurchaseOrderIcon /> },
{ to: "/shipping/shipments", label: "Shipments", icon: <ShipmentIcon /> },
{ to: "/projects", label: "Projects", icon: <ProjectsIcon /> },
{ to: "/planning/gantt", label: "Gantt", icon: <GanttIcon /> },
];
@@ -156,6 +157,19 @@ function GanttIcon() {
);
}
function ProjectsIcon() {
return (
<NavIcon>
<path d="M5 6h6" />
<path d="M5 12h14" />
<path d="M5 18h8" />
<rect x="12" y="4" width="7" height="4" rx="1.5" />
<rect x="9" y="16" width="9" height="4" rx="1.5" />
<path d="M12 8v8" />
</NavIcon>
);
}
export function AppShell() {
const { user, logout } = useAuth();