diff --git a/Frontend/erp-system/app/dashboard/settings/page.tsx b/Frontend/erp-system/app/dashboard/settings/page.tsx new file mode 100644 index 0000000..dbe71d9 --- /dev/null +++ b/Frontend/erp-system/app/dashboard/settings/page.tsx @@ -0,0 +1,54 @@ +import Link from "next/link" +import { ShieldCheck, SlidersHorizontal, Users } from "lucide-react" + +const cards = [ + { + title: "Roles", + href: "/dashboard/settings/roles", + icon: ShieldCheck, + description: "Manage roles and navigation permissions", + }, + { + title: "Users", + href: "/dashboard/settings/users", + icon: Users, + description: "Create users and assign their roles", + }, + { + title: "Product Configuration", + href: "/dashboard/products/settings", + icon: SlidersHorizontal, + description: "Configure product and master-data options", + }, +] + +export default function SettingsPage() { + return ( +
+
+

ERP Settings

+

+ Manage ERP access, users, and system configuration. +

+
+ +
+ {cards.map((card) => ( + +
+ +
+
+

{card.title}

+

{card.description}

+
+ + ))} +
+
+ ) +}