From 3fc4d685aeb261850ed4ff861b0bae1e622e6e5c Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Wed, 11 Feb 2026 01:14:38 +0300 Subject: [PATCH] refactor: remove WalletConnect, add mobile menu with wallet button - Remove WalletConnectModal component (WalletConnect not ready) - Restore PezkuwiWalletButton for extension-only connection - Hide logo on mobile to save header space - Add hamburger menu for mobile navigation --- web/src/components/AppLayout.tsx | 31 +- web/src/components/WalletConnectModal.tsx | 405 ---------------------- 2 files changed, 8 insertions(+), 428 deletions(-) delete mode 100644 web/src/components/WalletConnectModal.tsx diff --git a/web/src/components/AppLayout.tsx b/web/src/components/AppLayout.tsx index 207a2828..1abaf435 100644 --- a/web/src/components/AppLayout.tsx +++ b/web/src/components/AppLayout.tsx @@ -27,7 +27,7 @@ import { useWebSocket } from '@/contexts/WebSocketContext'; import { StakingDashboard } from './staking/StakingDashboard'; import { MultiSigWallet } from './wallet/MultiSigWallet'; import { useWallet } from '@/contexts/WalletContext'; -import { WalletConnectModal } from './WalletConnectModal'; +import { PezkuwiWalletButton } from './PezkuwiWalletButton'; import { DEXDashboard } from './dex/DEXDashboard'; import { P2PDashboard } from './p2p/P2PDashboard'; import EducationPlatform from '../pages/EducationPlatform'; @@ -64,16 +64,16 @@ const AppLayout: React.FC = () => {