feat(freight:backoffice): added basic frontend integration with auth(login) page

This commit is contained in:
Michael Abebe
2026-05-22 17:15:46 +03:00
parent f9a9d9923c
commit 2c9ca6f16b
30 changed files with 515 additions and 3301 deletions

View File

@@ -0,0 +1,12 @@
import FeaturePlaceholder from "@/components/FeaturePlaceholder";
const ConsignmentDetailPage = () => {
return (
<FeaturePlaceholder
title="Consignment Detail"
description="Review cargo information, routing context, and operational actions for a consignment."
/>
);
};
export default ConsignmentDetailPage;

View File

@@ -0,0 +1,12 @@
import FeaturePlaceholder from "@/components/FeaturePlaceholder";
const ConsignmentsPage = () => {
return (
<FeaturePlaceholder
title="Consignments"
description="Manage consignment handling, milestones, and internal exception resolution."
/>
);
};
export default ConsignmentsPage;