File size: 897 Bytes
ea270a7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import {
productAccent,
SubstrateWorkflowPanel as SharedSubstrateWorkflowPanel,
} from '@szl-holdings/design-system';
export function SubstrateWorkflowPanel() {
return (
<SharedSubstrateWorkflowPanel
workflowId="vessels-voyage-anomaly"
title="Voyage Event Anomaly Review"
subtitle="Substrate · vessels-voyage-anomaly · Phase 2"
description="Reviews AIS event streams for dark periods, STS transfers, and sanctions proximity. Operator approval required before case creation."
accentColor={productAccent.vessels}
workflowInput={{
vesselIds: ['IMO-9876543', 'IMO-9234567'],
lookbackHours: 720,
}}
defaultConfidence={0.81}
dryRunNote="DRY-RUN — case creation and notifications suppressed."
pendingApprovalNote="PENDING APPROVAL — paused at approval gate. Review the approvals inbox to resume."
/>
);
}
|