cry-amg / index.html
amghsa's picture
undefined - Initial Deployment
47caf10 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crypto Portfolio Tracker</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>
.positive {
color: #10b981;
}
.negative {
color: #ef4444;
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}
.blur-effect {
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.gradient-bg {
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
.coin-logo {
width: 24px;
height: 24px;
border-radius: 50%;
object-fit: cover;
}
@media (max-width: 768px) {
.responsive-table th:nth-child(5),
.responsive-table td:nth-child(5),
.responsive-table th:nth-child(6),
.responsive-table td:nth-child(6),
.responsive-table th:nth-child(7),
.responsive-table td:nth-child(7) {
display: none;
}
}
</style>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<div class="container mx-auto px-4 py-8">
<!-- Header -->
<header class="mb-8">
<div class="flex justify-between items-center mb-6">
<h1 class="text-3xl font-bold text-white">Crypto Portfolio</h1>
<div class="flex space-x-4">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg flex items-center">
<i class="fas fa-plus mr-2"></i> Add Asset
</button>
<button class="bg-gray-700 hover:bg-gray-600 text-white px-4 py-2 rounded-lg flex items-center">
<i class="fas fa-filter mr-2"></i> Filter
</button>
</div>
</div>
<!-- Portfolio Summary -->
<div class="gradient-bg rounded-xl p-6 mb-6 shadow-lg">
<div class="grid grid-cols-1 md:grid-cols-4 gap-6">
<div class="bg-gray-800 bg-opacity-50 rounded-lg p-4 blur-effect">
<p class="text-gray-400 text-sm">Total Value</p>
<p class="text-2xl font-bold">$1,654.90</p>
</div>
<div class="bg-gray-800 bg-opacity-50 rounded-lg p-4 blur-effect">
<p class="text-gray-400 text-sm">24h Change</p>
<p class="text-2xl font-bold positive">+$124.65 (7.53%)</p>
</div>
<div class="bg-gray-800 bg-opacity-50 rounded-lg p-4 blur-effect">
<p class="text-gray-400 text-sm">All-time Profit</p>
<p class="text-2xl font-bold negative">-$89.42 (5.12%)</p>
</div>
<div class="bg-gray-800 bg-opacity-50 rounded-lg p-4 blur-effect">
<p class="text-gray-400 text-sm">Top Performer</p>
<div class="flex items-center">
<img src="https://cryptologos.cc/logos/myxfinity-myx-logo.png" class="coin-logo mr-2">
<p class="text-xl font-bold">MYX <span class="text-sm positive">+1451.31%</span></p>
</div>
</div>
</div>
</div>
</header>
<!-- Top Coins Section -->
<section class="mb-10">
<h2 class="text-xl font-semibold mb-4 flex items-center">
<i class="fas fa-star mr-2 text-yellow-400"></i> Top 7 Coins Analysts Are Watching
</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-7 gap-4">
<!-- Coin 1 -->
<div class="bg-gray-800 rounded-lg p-4 hover:bg-gray-700 transition cursor-pointer">
<div class="flex items-center mb-3">
<img src="https://cryptologos.cc/logos/myxfinity-myx-logo.png" class="coin-logo mr-2">
<div>
<p class="font-medium">MYX</p>
<p class="text-xs text-gray-400">MYX Finance</p>
</div>
</div>
<p class="text-lg font-bold mb-1">$1.6549</p>
<p class="text-sm positive">+1451.31% (7d)</p>
</div>
<!-- Coin 2 -->
<div class="bg-gray-800 rounded-lg p-4 hover:bg-gray-700 transition cursor-pointer">
<div class="flex items-center mb-3">
<img src="https://cryptologos.cc/logos/illuvium-ilv-logo.png" class="coin-logo mr-2">
<div>
<p class="font-medium">ILV</p>
<p class="text-xs text-gray-400">Illuvium</p>
</div>
</div>
<p class="text-lg font-bold mb-1">$19.85</p>
<p class="text-sm positive">+58.17% (7d)</p>
</div>
<!-- Coin 3 -->
<div class="bg-gray-800 rounded-lg p-4 hover:bg-gray-700 transition cursor-pointer">
<div class="flex items-center mb-3">
<img src="https://cryptologos.cc/logos/bitdao-bit-logo.png" class="coin-logo mr-2">
<div>
<p class="font-medium">BIT</p>
<p class="text-xs text-gray-400">BitDAO</p>
</div>
</div>
<p class="text-lg font-bold mb-1">$1.0498</p>
<p class="text-sm positive">+49.79% (7d)</p>
</div>
<!-- Coin 4 -->
<div class="bg-gray-800 rounded-lg p-4 hover:bg-gray-700 transition cursor-pointer">
<div class="flex items-center mb-3">
<img src="https://cryptologos.cc/logos/superrare-rare-logo.png" class="coin-logo mr-2">
<div>
<p class="font-medium">RARE</p>
<p class="text-xs text-gray-400">SuperRare</p>
</div>
</div>
<p class="text-lg font-bold mb-1">$0.06386</p>
<p class="text-sm positive">+28.51% (7d)</p>
</div>
<!-- Coin 5 -->
<div class="bg-gray-800 rounded-lg p-4 hover:bg-gray-700 transition cursor-pointer">
<div class="flex items-center mb-3">
<img src="https://cryptologos.cc/logos/orca-orca-logo.png" class="coin-logo mr-2">
<div>
<p class="font-medium">ORCA</p>
<p class="text-xs text-gray-400">Orca</p>
</div>
</div>
<p class="text-lg font-bold mb-1">$2.7489</p>
<p class="text-sm positive">+26.86% (7d)</p>
</div>
<!-- Coin 6 -->
<div class="bg-gray-800 rounded-lg p-4 hover:bg-gray-700 transition cursor-pointer">
<div class="flex items-center mb-3">
<img src="https://cryptologos.cc/logos/epic-coin-epic-logo.png" class="coin-logo mr-2">
<div>
<p class="font-medium">EPIC</p>
<p class="text-xs text-gray-400">Epic Chain</p>
</div>
</div>
<p class="text-lg font-bold mb-1">$2.2999</p>
<p class="text-sm positive">+23.69% (7d)</p>
</div>
<!-- Coin 7 -->
<div class="bg-gray-800 rounded-lg p-4 hover:bg-gray-700 transition cursor-pointer">
<div class="flex items-center mb-3">
<img src="https://cryptologos.cc/logos/polygon-matic-logo.png" class="coin-logo mr-2">
<div>
<p class="font-medium">WMATIC</p>
<p class="text-xs text-gray-400">Wrapped Matic</p>
</div>
</div>
<p class="text-lg font-bold mb-1">$0.2462</p>
<p class="text-sm positive">+22.88% (7d)</p>
</div>
</div>
</section>
<!-- Main Table -->
<section>
<div class="flex justify-between items-center mb-4">
<h2 class="text-xl font-semibold">Your Assets</h2>
<div class="relative">
<input type="text" placeholder="Search coins..." class="bg-gray-800 rounded-lg pl-10 pr-4 py-2 w-64 focus:outline-none focus:ring-2 focus:ring-blue-500">
<i class="fas fa-search absolute left-3 top-3 text-gray-500"></i>
</div>
</div>
<div class="overflow-x-auto scrollbar-hide">
<table class="w-full responsive-table">
<thead class="bg-gray-800 text-gray-400">
<tr>
<th class="py-3 px-4 text-left rounded-tl-lg">Name</th>
<th class="py-3 px-4 text-left">Price</th>
<th class="py-3 px-4 text-left">1h%</th>
<th class="py-3 px-4 text-left">24h%</th>
<th class="py-3 px-4 text-left">7d%</th>
<th class="py-3 px-4 text-left">Holdings</th>
<th class="py-3 px-4 text-left">Avg Buy</th>
<th class="py-3 px-4 text-left">P/L</th>
<th class="py-3 px-4 text-right rounded-tr-lg">Actions</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-800">
<!-- MYX Finance -->
<tr class="hover:bg-gray-800 transition cursor-pointer">
<td class="py-4 px-4">
<div class="flex items-center">
<img src="https://cryptologos.cc/logos/myxfinity-myx-logo.png" class="coin-logo mr-3">
<div>
<p class="font-medium">MYX</p>
<p class="text-xs text-gray-400">MYX Finance</p>
</div>
</div>
</td>
<td class="py-4 px-4 font-medium">$1.6549</td>
<td class="py-4 px-4 positive">+1.60%</td>
<td class="py-4 px-4 positive">+6.80%</td>
<td class="py-4 px-4 positive">+1451.31%</td>
<td class="py-4 px-4">
<p class="font-medium">$1.6549</p>
<p class="text-xs text-gray-400">1 MYX</p>
</td>
<td class="py-4 px-4">$2.0052</td>
<td class="py-4 px-4 negative">-$0.3503</td>
<td class="py-4 px-4 text-right">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-3 py-1 rounded-md text-sm mr-2">
<i class="fas fa-exchange-alt"></i>
</button>
<button class="bg-gray-700 hover:bg-gray-600 text-white px-3 py-1 rounded-md text-sm">
<i class="fas fa-ellipsis-v"></i>
</button>
</td>
</tr>
<!-- Illuvium -->
<tr class="hover:bg-gray-800 transition cursor-pointer">
<td class="py-4 px-4">
<div class="flex items-center">
<img src="https://cryptologos.cc/logos/illuvium-ilv-logo.png" class="coin-logo mr-3">
<div>
<p class="font-medium">ILV</p>
<p class="text-xs text-gray-400">Illuvium</p>
</div>
</div>
</td>
<td class="py-4 px-4 font-medium">$19.85</td>
<td class="py-4 px-4 positive">+1.52%</td>
<td class="py-4 px-4 positive">+1.27%</td>
<td class="py-4 px-4 positive">+58.17%</td>
<td class="py-4 px-4">
<p class="font-medium">$1.9847</p>
<p class="text-xs text-gray-400">0.1 ILV</p>
</td>
<td class="py-4 px-4">$46.94</td>
<td class="py-4 px-4 negative">-$2.7093</td>
<td class="py-4 px-4 text-right">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-3 py-1 rounded-md text-sm mr-2">
<i class="fas fa-exchange-alt"></i>
</button>
<button class="bg-gray-700 hover:bg-gray-600 text-white px-3 py-1 rounded-md text-sm">
<i class="fas fa-ellipsis-v"></i>
</button>
</td>
</tr>
<!-- BitDAO -->
<tr class="hover:bg-gray-800 transition cursor-pointer">
<td class="py-4 px-4">
<div class="flex items-center">
<img src="https://cryptologos.cc/logos/bitdao-bit-logo.png" class="coin-logo mr-3">
<div>
<p class="font-medium">BIT</p>
<p class="text-xs text-gray-400">BitDAO</p>
</div>
</div>
</td>
<td class="py-4 px-4 font-medium">$1.0498</td>
<td class="py-4 px-4 positive">+0.68%</td>
<td class="py-4 px-4 positive">+4.91%</td>
<td class="py-4 px-4 positive">+49.79%</td>
<td class="py-4 px-4">
<p class="font-medium">$1.0498</p>
<p class="text-xs text-gray-400">1 BIT</p>
</td>
<td class="py-4 px-4">$0.7418</td>
<td class="py-4 px-4 positive">+$0.308</td>
<td class="py-4 px-4 text-right">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-3 py-1 rounded-md text-sm mr-2">
<i class="fas fa-exchange-alt"></i>
</button>
<button class="bg-gray-700 hover:bg-gray-600 text-white px-3 py-1 rounded-md text-sm">
<i class="fas fa-ellipsis-v"></i>
</button>
</td>
</tr>
<!-- SuperRare -->
<tr class="hover:bg-gray-800 transition cursor-pointer">
<td class="py-4 px-4">
<div class="flex items-center">
<img src="https://cryptologos.cc/logos/superrare-rare-logo.png" class="coin-logo mr-3">
<div>
<p class="font-medium">RARE</p>
<p class="text-xs text-gray-400">SuperRare</p>
</div>
</div>
</td>
<td class="py-4 px-4 font-medium">$0.06386</td>
<td class="py-4 px-4 positive">+0.11%</td>
<td class="py-4 px-4 positive">+0.81%</td>
<td class="py-4 px-4 positive">+28.51%</td>
<td class="py-4 px-4">
<p class="font-medium">$0.6386</p>
<p class="text-xs text-gray-400">10 RARE</p>
</td>
<td class="py-4 px-4">$0.1926</td>
<td class="py-4 px-4 negative">-$1.2874</td>
<td class="py-4 px-4 text-right">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-3 py-1 rounded-md text-sm mr-2">
<i class="fas fa-exchange-alt"></i>
</button>
<button class="bg-gray-700 hover:bg-gray-600 text-white px-3 py-1 rounded-md text-sm">
<i class="fas fa-ellipsis-v"></i>
</button>
</td>
</tr>
<!-- Orca -->
<tr class="hover:bg-gray-800 transition cursor-pointer">
<td class="py-4 px-4">
<div class="flex items-center">
<img src="https://cryptologos.cc/logos/orca-orca-logo.png" class="coin-logo mr-3">
<div>
<p class="font-medium">ORCA</p>
<p class="text-xs text-gray-400">Orca</p>
</div>
</div>
</td>
<td class="py-4 px-4 font-medium">$2.7489</td>
<td class="py-4 px-4 positive">+0.12%</td>
<td class="py-4 px-4 positive">+15.08%</td>
<td class="py-4 px-4 positive">+26.86%</td>
<td class="py-4 px-4">
<p class="font-medium">$2.7489</p>
<p class="text-xs text-gray-400">1 ORCA</p>
</td>
<td class="py-4 px-4">$3.4732</td>
<td class="py-4 px-4 negative">-$0.7243</td>
<td class="py-4 px-4 text-right">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-3 py-1 rounded-md text-sm mr-2">
<i class="fas fa-exchange-alt"></i>
</button>
<button class="bg-gray-700 hover:bg-gray-600 text-white px-3 py-1 rounded-md text-sm">
<i class="fas fa-ellipsis-v"></i>
</button>
</td>
</tr>
<!-- Epic Chain -->
<tr class="hover:bg-gray-800 transition cursor-pointer">
<td class="py-4 px-4">
<div class="flex items-center">
<img src="https://cryptologos.cc/logos/epic-coin-epic-logo.png" class="coin-logo mr-3">
<div>
<p class="font-medium">EPIC</p>
<p class="text-xs text-gray-400">Epic Chain</p>
</div>
</div>
</td>
<td class="py-4 px-4 font-medium">$2.2999</td>
<td class="py-4 px-4 positive">+1.30%</td>
<td class="py-4 px-4 positive">+8.34%</td>
<td class="py-4 px-4 positive">+23.69%</td>
<td class="py-4 px-4">
<p class="font-medium">$2.2999</p>
<p class="text-xs text-gray-400">1 EPIC</p>
</td>
<td class="py-4 px-4">$1.9852</td>
<td class="py-4 px-4 positive">+$0.3147</td>
<td class="py-4 px-4 text-right">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-3 py-1 rounded-md text-sm mr-2">
<i class="fas fa-exchange-alt"></i>
</button>
<button class="bg-gray-700 hover:bg-gray-600 text-white px-3 py-1 rounded-md text-sm">
<i class="fas fa-ellipsis-v"></i>
</button>
</td>
</tr>
<!-- Wrapped Matic -->
<tr class="hover:bg-gray-800 transition cursor-pointer">
<td class="py-4 px-4">
<div class="flex items-center">
<img src="https://cryptologos.cc/logos/polygon-matic-logo.png" class="coin-logo mr-3">
<div>
<p class="font-medium">WMATIC</p>
<p class="text-xs text-gray-400">Wrapped Matic</p>
</div>
</div>
</td>
<td class="py-4 px-4 font-medium">$0.2462</td>
<td class="py-4 px-4 positive">+0.79%</td>
<td class="py-4 px-4 positive">+5.51%</td>
<td class="py-4 px-4 positive">+22.88%</td>
<td class="py-4 px-4">
<p class="font-medium">$4.9247</p>
<p class="text-xs text-gray-400">20 WMATIC</p>
</td>
<td class="py-4 px-4">$0.8413</td>
<td class="py-4 px-4 negative">-$11.90</td>
<td class="py-4 px-4 text-right">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-3 py-1 rounded-md text-sm mr-2">
<i class="fas fa-exchange-alt"></i>
</button>
<button class="bg-gray-700 hover:bg-gray-600 text-white px-3 py-1 rounded-md text-sm">
<i class="fas fa-ellipsis-v"></i>
</button>
</td>
</tr>
</tbody>
</table>
</div>
<div class="flex justify-between items-center mt-4">
<p class="text-gray-400 text-sm">Showing 7 of 75 assets</p>
<div class="flex space-x-2">
<button class="bg-gray-800 hover:bg-gray-700 text-white px-3 py-1 rounded-md">
<i class="fas fa-chevron-left"></i>
</button>
<button class="bg-blue-600 text-white px-3 py-1 rounded-md">1</button>
<button class="bg-gray-800 hover:bg-gray-700 text-white px-3 py-1 rounded-md">2</button>
<button class="bg-gray-800 hover:bg-gray-700 text-white px-3 py-1 rounded-md">3</button>
<button class="bg-gray-800 hover:bg-gray-700 text-white px-3 py-1 rounded-md">...</button>
<button class="bg-gray-800 hover:bg-gray-700 text-white px-3 py-1 rounded-md">10</button>
<button class="bg-gray-800 hover:bg-gray-700 text-white px-3 py-1 rounded-md">
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
</section>
</div>
<script>
// Simple script to toggle mobile menu if needed
document.addEventListener('DOMContentLoaded', function() {
// You can add more interactive functionality here
console.log('Portfolio tracker loaded');
// Example: Highlight row on click
const rows = document.querySelectorAll('tbody tr');
rows.forEach(row => {
row.addEventListener('click', function() {
rows.forEach(r => r.classList.remove('bg-gray-800'));
this.classList.add('bg-gray-800');
});
});
});
</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=amghsa/cry-amg" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>