| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Tijan F.A. Sillah - Crypto Account</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <style> |
| .gradient-bg { |
| background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%); |
| } |
| .card-glow:hover { |
| box-shadow: 0 0 15px rgba(14, 165, 233, 0.5); |
| } |
| .coin-icon { |
| width: 32px; |
| height: 32px; |
| border-radius: 50%; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| background: rgba(255, 255, 255, 0.1); |
| } |
| .chart-container { |
| height: 250px; |
| } |
| @keyframes pulse { |
| 0%, 100% { |
| opacity: 1; |
| } |
| 50% { |
| opacity: 0.5; |
| } |
| } |
| .animate-pulse { |
| animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; |
| } |
| </style> |
| </head> |
| <body class="bg-gray-100 font-sans"> |
| <div class="min-h-screen"> |
| |
| <header class="gradient-bg text-white shadow-lg"> |
| <div class="container mx-auto px-4 py-6"> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center space-x-4"> |
| <div class="w-12 h-12 rounded-full bg-blue-400 flex items-center justify-center"> |
| <span class="text-xl font-bold">TS</span> |
| </div> |
| <div> |
| <h1 class="text-2xl font-bold">Tijan F.A. Sillah</h1> |
| <p class="text-blue-100">Premium Crypto Investor</p> |
| </div> |
| </div> |
| <div class="hidden md:flex items-center space-x-6"> |
| <button class="hover:text-blue-200 transition"> |
| <i class="fas fa-bell text-xl"></i> |
| </button> |
| <button class="hover:text-blue-200 transition"> |
| <i class="fas fa-cog text-xl"></i> |
| </button> |
| <button class="px-4 py-2 bg-white text-blue-600 rounded-full font-medium hover:bg-blue-50 transition"> |
| <i class="fas fa-lock mr-2"></i> Secure Account |
| </button> |
| </div> |
| <button class="md:hidden text-2xl"> |
| <i class="fas fa-bars"></i> |
| </button> |
| </div> |
| </div> |
| </header> |
|
|
| |
| <main class="container mx-auto px-4 py-8"> |
| <div class="grid grid-cols-1 lg:grid-cols-3 gap-6"> |
| |
| <div class="lg:col-span-2"> |
| <div class="bg-white rounded-xl shadow-md p-6 mb-6 card-glow transition"> |
| <div class="flex justify-between items-center mb-6"> |
| <h2 class="text-2xl font-bold text-gray-800">Your Crypto Portfolio</h2> |
| <div class="flex space-x-2"> |
| <button class="px-3 py-1 bg-blue-50 text-blue-600 rounded-full text-sm">All Assets</button> |
| <button class="px-3 py-1 bg-gray-100 text-gray-600 rounded-full text-sm">Favorites</button> |
| </div> |
| </div> |
|
|
| |
| <div class="gradient-bg text-white rounded-xl p-6 mb-6"> |
| <p class="text-blue-100 mb-1">Total Portfolio Value</p> |
| <div class="flex items-end justify-between"> |
| <div> |
| <h3 class="text-3xl font-bold">$24,568.42</h3> |
| <p class="text-blue-100 flex items-center"> |
| <span class="text-green-300 mr-2">+2.4%</span> |
| <span>Today</span> |
| </p> |
| </div> |
| <button class="px-4 py-2 bg-white text-blue-600 rounded-full font-medium hover:bg-blue-50 transition"> |
| <i class="fas fa-exchange-alt mr-2"></i> Trade |
| </button> |
| </div> |
| </div> |
|
|
| |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-6"> |
| <div class="bg-gray-50 rounded-lg p-4"> |
| <p class="text-gray-500 text-sm mb-1">Bitcoin (BTC)</p> |
| <div class="flex justify-between items-center"> |
| <h4 class="text-xl font-bold">0.42 BTC</h4> |
| <p class="text-green-500">+1.8%</p> |
| </div> |
| <p class="text-gray-600">≈ $12,345.67</p> |
| </div> |
| <div class="bg-gray-50 rounded-lg p-4"> |
| <p class="text-gray-500 text-sm mb-1">Ethereum (ETH)</p> |
| <div class="flex justify-between items-center"> |
| <h4 class="text-xl font-bold">3.75 ETH</h4> |
| <p class="text-green-500">+3.2%</p> |
| </div> |
| <p class="text-gray-600">≈ $7,890.12</p> |
| </div> |
| <div class="bg-gray-50 rounded-lg p-4"> |
| <p class="text-gray-500 text-sm mb-1">Cardano (ADA)</p> |
| <div class="flex justify-between items-center"> |
| <h4 class="text-xl font-bold">1,250 ADA</h4> |
| <p class="text-red-500">-0.5%</p> |
| </div> |
| <p class="text-gray-600">≈ $1,234.56</p> |
| </div> |
| <div class="bg-gray-50 rounded-lg p-4"> |
| <p class="text-gray-500 text-sm mb-1">Other Assets</p> |
| <div class="flex justify-between items-center"> |
| <h4 class="text-xl font-bold">Various</h4> |
| <p class="text-green-500">+1.2%</p> |
| </div> |
| <p class="text-gray-600">≈ $3,098.07</p> |
| </div> |
| </div> |
|
|
| |
| <div class="flex flex-wrap gap-3"> |
| <button class="px-4 py-2 bg-blue-600 text-white rounded-full flex items-center hover:bg-blue-700 transition"> |
| <i class="fas fa-arrow-down mr-2"></i> Deposit |
| </button> |
| <button class="px-4 py-2 bg-white border border-gray-300 rounded-full flex items-center hover:bg-gray-50 transition"> |
| <i class="fas fa-arrow-up mr-2"></i> Withdraw |
| </button> |
| <button class="px-4 py-2 bg-white border border-gray-300 rounded-full flex items-center hover:bg-gray-50 transition"> |
| <i class="fas fa-exchange-alt mr-2"></i> Swap |
| </button> |
| <button class="px-4 py-2 bg-white border border-gray-300 rounded-full flex items-center hover:bg-gray-50 transition"> |
| <i class="fas fa-gift mr-2"></i> Send |
| </button> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white rounded-xl shadow-md p-6 card-glow transition"> |
| <h2 class="text-2xl font-bold text-gray-800 mb-6">Market Overview</h2> |
| <div class="chart-container bg-gray-50 rounded-lg mb-6 flex items-center justify-center"> |
| <p class="text-gray-400">Price chart would appear here</p> |
| </div> |
| <div class="overflow-x-auto"> |
| <table class="min-w-full divide-y divide-gray-200"> |
| <thead> |
| <tr> |
| <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Asset</th> |
| <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Price</th> |
| <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">24h Change</th> |
| <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Market Cap</th> |
| <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Action</th> |
| </tr> |
| </thead> |
| <tbody class="bg-white divide-y divide-gray-200"> |
| <tr class="hover:bg-gray-50"> |
| <td class="px-4 py-4 whitespace-nowrap"> |
| <div class="flex items-center"> |
| <div class="coin-icon mr-3"> |
| <i class="fab fa-bitcoin text-orange-500"></i> |
| </div> |
| <div> |
| <div class="font-medium">Bitcoin</div> |
| <div class="text-gray-500 text-sm">BTC</div> |
| </div> |
| </div> |
| </td> |
| <td class="px-4 py-4 whitespace-nowrap"> |
| $29,456.78 |
| </td> |
| <td class="px-4 py-4 whitespace-nowrap text-green-500"> |
| +2.4% |
| </td> |
| <td class="px-4 py-4 whitespace-nowrap"> |
| $560.2B |
| </td> |
| <td class="px-4 py-4 whitespace-nowrap"> |
| <button class="text-blue-600 hover:text-blue-800">Trade</button> |
| </td> |
| </tr> |
| <tr class="hover:bg-gray-50"> |
| <td class="px-4 py-4 whitespace-nowrap"> |
| <div class="flex items-center"> |
| <div class="coin-icon mr-3"> |
| <i class="fab fa-ethereum text-purple-500"></i> |
| </div> |
| <div> |
| <div class="font-medium">Ethereum</div> |
| <div class="text-gray-500 text-sm">ETH</div> |
| </div> |
| </div> |
| </td> |
| <td class="px-4 py-4 whitespace-nowrap"> |
| $1,845.32 |
| </td> |
| <td class="px-4 py-4 whitespace-nowrap text-green-500"> |
| +1.8% |
| </td> |
| <td class="px-4 py-4 whitespace-nowrap"> |
| $221.5B |
| </td> |
| <td class="px-4 py-4 whitespace-nowrap"> |
| <button class="text-blue-600 hover:text-blue-800">Trade</button> |
| </td> |
| </tr> |
| <tr class="hover:bg-gray-50"> |
| <td class="px-4 py-4 whitespace-nowrap"> |
| <div class="flex items-center"> |
| <div class="coin-icon mr-3"> |
| <i class="fas fa-dollar-sign text-green-500"></i> |
| </div> |
| <div> |
| <div class="font-medium">Tether</div> |
| <div class="text-gray-500 text-sm">USDT</div> |
| </div> |
| </div> |
| </td> |
| <td class="px-4 py-4 whitespace-nowrap"> |
| $1.00 |
| </td> |
| <td class="px-4 py-4 whitespace-nowrap text-gray-500"> |
| 0.0% |
| </td> |
| <td class="px-4 py-4 whitespace-nowrap"> |
| $83.2B |
| </td> |
| <td class="px-4 py-4 whitespace-nowrap"> |
| <button class="text-blue-600 hover:text-blue-800">Trade</button> |
| </td> |
| </tr> |
| </tbody> |
| </table> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="lg:col-span-1 space-y-6"> |
| |
| <div class="bg-white rounded-xl shadow-md p-6 card-glow transition"> |
| <h2 class="text-2xl font-bold text-gray-800 mb-6">Recent Activity</h2> |
| <div class="space-y-4"> |
| <div class="flex items-start"> |
| <div class="bg-blue-100 p-2 rounded-full mr-3"> |
| <i class="fas fa-arrow-down text-blue-600"></i> |
| </div> |
| <div> |
| <p class="font-medium">Received Bitcoin</p> |
| <p class="text-gray-500 text-sm">0.05 BTC ($1,450.25)</p> |
| <p class="text-gray-400 text-xs">Today, 10:45 AM</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <div class="bg-green-100 p-2 rounded-full mr-3"> |
| <i class="fas fa-exchange-alt text-green-600"></i> |
| </div> |
| <div> |
| <p class="font-medium">Swapped ETH to ADA</p> |
| <p class="text-gray-500 text-sm">0.5 ETH → 450 ADA</p> |
| <p class="text-gray-400 text-xs">Yesterday, 4:30 PM</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <div class="bg-purple-100 p-2 rounded-full mr-3"> |
| <i class="fas fa-arrow-up text-purple-600"></i> |
| </div> |
| <div> |
| <p class="font-medium">Sent Ethereum</p> |
| <p class="text-gray-500 text-sm">1.2 ETH ($2,214.36)</p> |
| <p class="text-gray-400 text-xs">Jun 15, 9:20 AM</p> |
| </div> |
| </div> |
| </div> |
| <button class="mt-4 text-blue-600 hover:text-blue-800 w-full text-center py-2 border border-gray-200 rounded-lg hover:bg-gray-50"> |
| View All Activity |
| </button> |
| </div> |
|
|
| |
| <div class="bg-white rounded-xl shadow-md p-6 card-glow transition"> |
| <h2 class="text-2xl font-bold text-gray-800 mb-6">Security Status</h2> |
| <div class="space-y-4"> |
| <div class="flex items-center justify-between"> |
| <div class="flex items-center"> |
| <div class="bg-green-100 p-2 rounded-full mr-3"> |
| <i class="fas fa-check text-green-600"></i> |
| </div> |
| <span>Email Verified</span> |
| </div> |
| <i class="fas fa-chevron-right text-gray-400"></i> |
| </div> |
| <div class="flex items-center justify-between"> |
| <div class="flex items-center"> |
| <div class="bg-green-100 p-2 rounded-full mr-3"> |
| <i class="fas fa-check text-green-600"></i> |
| </div> |
| <span>2FA Enabled</span> |
| </div> |
| <i class="fas fa-chevron-right text-gray-400"></i> |
| </div> |
| <div class="flex items-center justify-between"> |
| <div class="flex items-center"> |
| <div class="bg-yellow-100 p-2 rounded-full mr-3"> |
| <i class="fas fa-exclamation text-yellow-600"></i> |
| </div> |
| <span>Withdrawal Whitelist</span> |
| </div> |
| <i class="fas fa-chevron-right text-gray-400"></i> |
| </div> |
| <div class="flex items-center justify-between"> |
| <div class="flex items-center"> |
| <div class="bg-red-100 p-2 rounded-full mr-3"> |
| <i class="fas fa-times text-red-600"></i> |
| </div> |
| <span>Anti-Phishing Code</span> |
| </div> |
| <i class="fas fa-chevron-right text-gray-400"></i> |
| </div> |
| </div> |
| <button class="mt-6 w-full py-3 bg-blue-600 text-white rounded-lg font-medium hover:bg-blue-700 transition"> |
| <i class="fas fa-shield-alt mr-2"></i> Enhance Security |
| </button> |
| </div> |
|
|
| |
| <div class="bg-white rounded-xl shadow-md p-6 card-glow transition"> |
| <h2 class="text-2xl font-bold text-gray-800 mb-6">Quick Links</h2> |
| <div class="grid grid-cols-2 gap-3"> |
| <a href="#" class="p-4 bg-gray-50 rounded-lg flex flex-col items-center hover:bg-blue-50 transition"> |
| <i class="fas fa-university text-blue-600 text-2xl mb-2"></i> |
| <span class="text-sm text-center">Fiat Deposit</span> |
| </a> |
| <a href="#" class="p-4 bg-gray-50 rounded-lg flex flex-col items-center hover:bg-blue-50 transition"> |
| <i class="fas fa-wallet text-blue-600 text-2xl mb-2"></i> |
| <span class="text-sm text-center">Wallet</span> |
| </a> |
| <a href="#" class="p-4 bg-gray-50 rounded-lg flex flex-col items-center hover:bg-blue-50 transition"> |
| <i class="fas fa-chart-line text-blue-600 text-2xl mb-2"></i> |
| <span class="text-sm text-center">Markets</span> |
| </a> |
| <a href="#" class="p-4 bg-gray-50 rounded-lg flex flex-col items-center hover:bg-blue-50 transition"> |
| <i class="fas fa-gift text-blue-600 text-2xl mb-2"></i> |
| <span class="text-sm text-center">Rewards</span> |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </main> |
|
|
| |
| <footer class="bg-white border-t border-gray-200 py-8"> |
| <div class="container mx-auto px-4"> |
| <div class="flex flex-col md:flex-row justify-between items-center"> |
| <div class="mb-4 md:mb-0"> |
| <div class="flex items-center"> |
| <div class="w-8 h-8 rounded-full bg-blue-600 flex items-center justify-center mr-2"> |
| <i class="fas fa-coins text-white"></i> |
| </div> |
| <span class="font-bold text-lg">Tijan Crypto</span> |
| </div> |
| <p class="text-gray-500 text-sm mt-2">Secure and reliable cryptocurrency platform</p> |
| </div> |
| <div class="flex space-x-6"> |
| <a href="#" class="text-gray-600 hover:text-blue-600"><i class="fab fa-twitter"></i></a> |
| <a href="#" class="text-gray-600 hover:text-blue-600"><i class="fab fa-telegram"></i></a> |
| <a href="#" class="text-gray-600 hover:text-blue-600"><i class="fab fa-discord"></i></a> |
| <a href="#" class="text-gray-600 hover:text-blue-600"><i class="fab fa-medium"></i></a> |
| </div> |
| </div> |
| <div class="border-t border-gray-200 mt-6 pt-6 text-sm text-gray-500"> |
| <div class="flex flex-col md:flex-row justify-between items-center"> |
| <div class="mb-4 md:mb-0"> |
| © 2023 Tijan Crypto. All rights reserved. |
| </div> |
| <div class="flex flex-wrap justify-center gap-4"> |
| <a href="#" class="hover:text-blue-600">Terms</a> |
| <a href="#" class="hover:text-blue-600">Privacy</a> |
| <a href="#" class="hover:text-blue-600">Security</a> |
| <a href="#" class="hover:text-blue-600">Help Center</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </footer> |
| </div> |
|
|
| <script> |
| |
| document.addEventListener('DOMContentLoaded', function() { |
| |
| const chartContainer = document.querySelector('.chart-container'); |
| if (chartContainer) { |
| setTimeout(() => { |
| chartContainer.innerHTML = ` |
| <div class="w-full h-full flex items-center justify-center"> |
| <div class="text-center"> |
| <i class="fas fa-chart-line text-4xl text-gray-300 mb-2"></i> |
| <p class="text-gray-400">Live price chart would appear here</p> |
| </div> |
| </div> |
| `; |
| }, 1000); |
| } |
| |
| |
| const mobileMenuButton = document.querySelector('button[class="md:hidden text-2xl"]'); |
| if (mobileMenuButton) { |
| mobileMenuButton.addEventListener('click', function() { |
| alert('Mobile menu would open here in a full implementation.'); |
| }); |
| } |
| }); |
| </script> |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Tijubii/https-huggingface-co-spaces-enzostvs-deepsite" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |