feat(freight:backoffice): added login page and basic authorization

This commit is contained in:
Michael Abebe
2026-05-22 17:55:20 +03:00
parent 2c9ca6f16b
commit 27e2cfcf6b
18 changed files with 918 additions and 227 deletions

View File

@@ -1,12 +0,0 @@
import FeaturePlaceholder from "@/components/FeaturePlaceholder";
const DashboardPage = () => {
return (
<FeaturePlaceholder
title="Operations Dashboard"
description="Track internal freight activity, exceptions, and workload from one backoffice workspace."
/>
);
};
export default DashboardPage;

View File

@@ -0,0 +1,12 @@
import FeaturePlaceholder from "@/components/FeaturePlaceholder";
const OverviewPage = () => {
return (
<FeaturePlaceholder
title="Overview"
description="Track internal freight operations, monitor account administration, and review the latest backoffice activity from a single operational dashboard."
/>
);
};
export default OverviewPage;

View File

@@ -0,0 +1,12 @@
import FeaturePlaceholder from "@/components/FeaturePlaceholder";
const DepartmentsPage = () => {
return (
<FeaturePlaceholder
title="Departments"
description="Organize internal departments and associate user administration with freight business units."
/>
);
};
export default DepartmentsPage;

View File

@@ -0,0 +1,12 @@
import FeaturePlaceholder from "@/components/FeaturePlaceholder";
const RolesPage = () => {
return (
<FeaturePlaceholder
title="Roles"
description="Define backoffice access roles, capability groups, and permission boundaries for freight administration."
/>
);
};
export default RolesPage;

View File

@@ -0,0 +1,12 @@
import FeaturePlaceholder from "@/components/FeaturePlaceholder";
const UsersPage = () => {
return (
<FeaturePlaceholder
title="Users"
description="Manage backoffice user accounts, activation state, and directory records for internal freight teams."
/>
);
};
export default UsersPage;