PNG IHDR x sBIT|d pHYs + tEXtSoftware www.inkscape.org< ,tEXtComment
<aside id="leftSidebar" class="hidden md:flex flex-col w-64 bg-gray-200 dark:bg-dark-800 h-screen fixed left-0 top-0 overflow-y-auto">
<div class="flex items-center justify-between px-6 py-6">
<a href="{{ route('dashboard') }}" class="text-lg font-bold text-gray-800 dark:text-gray-200">
{{ config('app.name', 'Crypto Wallet') }}
</a>
</div>
<div class="px-6 py-4">
<!-- Menu Section -->
<div class="mb-8">
<h2 class="text-yellow-500 text-xl font-semibold mb-4">Menu</h2>
<nav class="space-y-2">
<a href="{{ route('dashboard') }}"
class="flex items-center text-gray-700 dark:text-white hover:bg-gray-300 dark:hover:bg-dark-700 px-4 py-2 rounded-lg {{ request()->routeIs('dashboard') ? 'bg-gray-300 dark:bg-dark-700' : '' }}">
<i class="fas fa-home w-5 h-5 mr-3"></i>
<span>Home</span>
</a>
<a href="{{ route('swap') }}"
class="flex items-center text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white hover:bg-gray-300 dark:hover:bg-dark-700 px-4 py-2 rounded-lg {{ request()->routeIs('swap') ? 'bg-gray-300 dark:bg-dark-700' : '' }}">
<i class="fas fa-exchange-alt w-5 h-5 mr-3"></i>
<span>Swap</span>
</a>
<a onclick="toggleModal('sendModal')"
class="flex items-center text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white hover:bg-gray-300 dark:hover:bg-dark-700 px-4 py-2 rounded-lg {{ request()->routeIs('deposit') ? 'bg-gray-300 dark:bg-dark-700' : '' }}">
<i class="fas fa-download w-5 h-5 mr-3"></i>
<span>Deposit</span>
</a>
<a onclick="toggleModal('receiveModal')"
class="flex items-center text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white hover:bg-gray-300 dark:hover:bg-dark-700 px-4 py-2 rounded-lg {{ request()->routeIs('withdraw') ? 'bg-gray-300 dark:bg-dark-700' : '' }}">
<i class="fas fa-upload w-5 h-5 mr-3"></i>
<span>Withdraw</span>
</a>
<a href="{{ route('bots') }}"
class="flex items-center text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white hover:bg-gray-300 dark:hover:bg-dark-700 px-4 py-2 rounded-lg {{ request()->routeIs('bots') ? 'bg-gray-300 dark:bg-dark-700' : '' }}">
<i class="fas fa-robot w-5 h-5 mr-3"></i>
<span>Bots</span>
</a>
<a href="{{ route('staking') }}"
class="flex items-center text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white hover:bg-gray-300 dark:hover:bg-dark-700 px-4 py-2 rounded-lg {{ request()->routeIs('staking') ? 'bg-gray-300 dark:bg-dark-700' : '' }}">
<i class="fas fa-layer-group w-5 h-5 mr-3"></i>
<span>Staking</span>
</a>
<a href="{{ route('card.index') }}"
class="flex items-center text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white hover:bg-gray-300 dark:hover:bg-dark-700 px-4 py-2 rounded-lg {{ request()->routeIs('card.index') ? 'bg-gray-300 dark:bg-dark-700' : '' }}">
<i class="fas fa-credit-card w-5 h-5 mr-3"></i>
<span>Cards</span>
</a>
<a href="{{ route('referral.index') }}"
class="flex items-center text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white hover:bg-gray-300 dark:hover:bg-dark-700 px-4 py-2 rounded-lg {{ request()->routeIs('referral.index') ? 'bg-gray-300 dark:bg-dark-700' : '' }}">
<i class="fas fa-users w-5 h-5 mr-3"></i>
<span>Referrals</span>
</a>
<a href="{{ route('settings') }}"
class="flex items-center text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white hover:bg-gray-300 dark:hover:bg-dark-700 px-4 py-2 rounded-lg {{ request()->routeIs('settings') ? 'bg-gray-300 dark:bg-dark-700' : '' }}">
<i class="fas fa-cog w-5 h-5 mr-3"></i>
<span>Settings</span>
</a>
<a href="{{ route('wallet.connect') }}"
class="flex items-center text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white hover:bg-yellow-100 dark:hover:bg-yellow-900 px-4 py-2 rounded-lg {{ request()->routeIs('wallet.connect') ? 'bg-yellow-100 dark:bg-yellow-900' : '' }}">
<i class="fas fa-wallet w-5 h-5 mr-3"></i>
<span>Wallet Connect</span>
</a>
</nav>
</div>
<!-- Crypto Section -->
<div class="mb-8">
<h2 class="text-yellow-500 text-xl font-semibold mb-4">Crypto</h2>
<div class="space-y-2">
<a href="{{ route('crypto.manage') }}"
class="flex items-center text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white hover:bg-gray-300 dark:hover:bg-dark-700 px-4 py-2 rounded-lg {{ request()->routeIs('crypto.manage') ? 'bg-gray-300 dark:bg-dark-700' : '' }}">
<i class="fas fa-layer-group w-5 h-5 mr-3"></i>
<span>Manage Crypto</span>
</a>
<a href="{{ route('crypto.address') }}"
class="flex items-center text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white hover:bg-gray-300 dark:hover:bg-dark-700 px-4 py-2 rounded-lg {{ request()->routeIs('crypto.address') ? 'bg-gray-300 dark:bg-dark-700' : '' }}">
<i class="fas fa-address-card w-5 h-5 mr-3"></i>
<span>Crypto Address</span>
</a>
<a href="{{ route('notifications') }}"
class="relative flex items-center text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-white hover:bg-gray-300 dark:hover:bg-dark-700 px-4 py-2 rounded-lg {{ request()->routeIs('notifications') ? 'bg-gray-300 dark:bg-dark-700' : '' }}">
<i class="fas fa-bell w-5 h-5 mr-3"></i>
<span>Notification</span>
<span id="sidebar-notification-badge" class="absolute top-0 right-11 bg-red-500 text-white text-xs rounded-full w-4 h-4 flex items-center justify-center hidden">
0
</span>
</a>
</div>
</div>
</div>
</aside>
b IDATxytVսϓ22 A@IR:hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-E