From 816ffbbfb6d05299f00548ef8d6dc571915ec8fc Mon Sep 17 00:00:00 2001 From: Dhananjaya99 <152056742+ashanruu@users.noreply.github.com> Date: Fri, 24 Jul 2026 14:33:49 +0530 Subject: [PATCH] setting not found issue --- .../app/dashboard/settings/page.tsx | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 Frontend/erp-system/app/dashboard/settings/page.tsx 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 ( +
+ Manage ERP access, users, and system configuration. +
+{card.title}
+{card.description}
+