feat(settings):add all settings pages

This commit is contained in:
2025-08-28 10:13:44 +05:30
parent eda57aae71
commit 3444291e25
5 changed files with 850 additions and 168 deletions

View File

@@ -13,8 +13,8 @@ export default function Layout({ children }: { children: React.ReactNode }) {
const links = [
{ label: "View Profile", href: "/settings" },
{ label: "Change Login Password", href: "/settings/change_login_password" },
{ label: "Change transaction Password", href: "/settings/change_transaction_password" },
{ label: "Set transaction Password", href: "/settings/set_transaction_password" },
{ label: "Change transaction Password", href: "/settings/change_txn_password" },
{ label: "Set transaction Password", href: "/settings/set_txn_password" },
];
useEffect(() => {
const token = localStorage.getItem("access_token");