diff --git a/frontend/src/screens/HomeScreen.tsx b/frontend/src/screens/HomeScreen.tsx index e135847c..c731c4d1 100644 --- a/frontend/src/screens/HomeScreen.tsx +++ b/frontend/src/screens/HomeScreen.tsx @@ -157,8 +157,9 @@ function WalletTab() { }; return ( - - + + + {/* Header */} My Wallet @@ -166,50 +167,104 @@ function WalletTab() { - {/* Balance Cards */} - - - - - HEZ - - {hezBalance} - Hemwelatî Token + {/* Balance Cards - Side by Side */} + + + + HEZ + {hezBalance} + Hemwelatî Token - - - - PEZ - - {pezBalance} - Pezkuwî Token + + + PEZ + {pezBalance} + Pezkuwî Token - {/* Wallet Actions */} - - - - Send - - - - Receive - - - - Swap - + {/* Action Buttons Container */} + + {/* First Row: Send, Receive, Swap, P2P */} + + + + Send + + + + Receive + + + + Swap + + + + P2P + + + + {/* Second Row: Vote, DApps, Staking, Connect */} + + + + Vote + + + + DApps + + + + Staking + + + + Connect + + + + + {/* Tokens List */} + + Tokens + + {/* USDT with PEZ badge */} + + + + + + + + USDT + PEZ Network + + + + 0 + $0 + + + + {/* Add more tokens as needed */} - + ); }