File size: 14,932 Bytes
99a97a5 4d2e57f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CryptoCharge Hub - Seamless Crypto Transactions</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
.vanta-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.glass-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.18);
}
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
</style>
</head>
<body class="min-h-screen bg-gradient-to-br from-gray-900 to-gray-800 text-white overflow-x-hidden">
<div id="vanta-bg" class="vanta-bg"></div>
<nav class="container mx-auto px-6 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="zap" class="text-blue-400"></i>
<span class="text-xl font-bold gradient-text">CryptoCharge</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="hover:text-blue-400 transition">Home</a>
<a href="clone.html" class="hover:text-blue-400 transition">Dashboard</a>
<a href="#" class="hover:text-blue-400 transition">Transactions</a>
<a href="#" class="hover:text-blue-400 transition">Support</a>
</div>
<div class="flex items-center space-x-4">
<button class="px-4 py-2 bg-blue-600 hover:bg-blue-700 rounded-full transition">Login</button>
<button class="px-4 py-2 bg-transparent border border-blue-400 hover:bg-blue-900/30 rounded-full transition">Sign Up</button>
<button id="mobile-menu-button" class="md:hidden">
<i data-feather="menu"></i>
</button>
</div>
</nav>
<main class="container mx-auto px-6 py-16">
<section class="flex flex-col md:flex-row items-center justify-between">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">
Power Your <span class="gradient-text">Crypto</span> Journey
</h1>
<p class="text-lg md:text-xl text-gray-300 mb-8">
Instant transactions, secure wallets, and seamless conversions.
Join the future of finance with our cutting-edge platform.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="px-8 py-4 bg-blue-600 hover:bg-blue-700 rounded-full text-lg font-semibold transition transform hover:scale-105">
Get Started
</button>
<button class="px-8 py-4 bg-transparent border border-blue-400 hover:bg-blue-900/30 rounded-full text-lg font-semibold transition transform hover:scale-105">
<div class="flex items-center justify-center space-x-2">
<i data-feather="play"></i>
<span>Watch Demo</span>
</div>
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="glass-card p-8 max-w-md w-full">
<div class="text-center mb-6">
<h2 class="text-2xl font-bold mb-2">Quick Transaction</h2>
<p class="text-gray-300">Send or receive crypto in seconds</p>
</div>
<form class="space-y-6">
<div>
<label class="block text-gray-300 mb-2">Select Currency</label>
<div class="relative">
<select class="w-full bg-gray-800/50 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500">
<option>Bitcoin (BTC)</option>
<option>Ethereum (ETH)</option>
<option>Solana (SOL)</option>
<option>Cardano (ADA)</option>
<option>Polygon (MATIC)</option>
</select>
<div class="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
<i data-feather="chevron-down" class="text-gray-400"></i>
</div>
</div>
</div>
<div>
<label class="block text-gray-300 mb-2">Amount</label>
<div class="relative">
<input type="text" class="w-full bg-gray-800/50 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="0.00">
<div class="absolute inset-y-0 right-0 flex items-center pr-3">
<span class="text-gray-400">USD</span>
</div>
</div>
</div>
<div>
<label class="block text-gray-300 mb-2">Recipient Address</label>
<input type="text" class="w-full bg-gray-800/50 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="0x...">
</div>
<button class="w-full py-3 bg-blue-600 hover:bg-blue-700 rounded-lg font-semibold transition">
Send Transaction
</button>
</form>
</div>
</div>
</section>
<section class="mt-32">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Why Choose <span class="gradient-text">CryptoCharge</span></h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Our platform offers unparalleled features designed for both beginners and crypto veterans.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="glass-card p-8 rounded-xl hover:transform hover:scale-105 transition duration-300">
<div class="w-14 h-14 bg-blue-900/30 rounded-lg flex items-center justify-center mb-6">
<i data-feather="shield" class="text-blue-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold mb-3">Bank-Level Security</h3>
<p class="text-gray-300">
Military-grade encryption and multi-signature wallets ensure your assets are always protected.
</p>
</div>
<div class="glass-card p-8 rounded-xl hover:transform hover:scale-105 transition duration-300">
<div class="w-14 h-14 bg-blue-900/30 rounded-lg flex items-center justify-center mb-6">
<i data-feather="zap" class="text-blue-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold mb-3">Lightning Fast</h3>
<p class="text-gray-300">
Process transactions in seconds with our optimized blockchain network technology.
</p>
</div>
<div class="glass-card p-8 rounded-xl hover:transform hover:scale-105 transition duration-300">
<div class="w-14 h-14 bg-blue-900/30 rounded-lg flex items-center justify-center mb-6">
<i data-feather="globe" class="text-blue-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold mb-3">Global Access</h3>
<p class="text-gray-300">
Available worldwide with support for 50+ cryptocurrencies and multiple fiat currencies.
</p>
</div>
</div>
</section>
<section class="mt-32">
<div class="glass-card p-8 md:p-12 rounded-2xl">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to <span class="gradient-text">Get Started</span>?</h2>
<p class="text-xl text-gray-300 mb-8">
Join thousands of users already managing their crypto assets with CryptoCharge.
</p>
<div class="flex space-x-4">
<button class="px-6 py-3 bg-blue-600 hover:bg-blue-700 rounded-full font-semibold transition">
Create Account
</button>
<button class="px-6 py-3 bg-transparent border border-blue-400 hover:bg-blue-900/30 rounded-full font-semibold transition">
Learn More
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="http://static.photos/technology/640x360/42" alt="Crypto Illustration" class="rounded-xl max-w-full h-auto">
</div>
</div>
</div>
</section>
</main>
<footer class="bg-gray-900/50 border-t border-gray-800 mt-32 py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i data-feather="zap" class="text-blue-400"></i>
<span class="text-xl font-bold gradient-text">CryptoCharge</span>
</div>
<p class="text-gray-400 mb-4">
The most trusted platform for crypto transactions and asset management.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-blue-400 transition"><i data-feather="twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-blue-400 transition"><i data-feather="facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-blue-400 transition"><i data-feather="instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-blue-400 transition"><i data-feather="linkedin"></i></a>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Products</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Wallet</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Exchange</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Merchant Tools</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Developer API</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Community</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Status</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Legal</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Contact</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-500 mb-4 md:mb-0">
© 2023 CryptoCharge Hub. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-500 hover:text-blue-400 transition">Privacy Policy</a>
<a href="#" class="text-gray-500 hover:text-blue-400 transition">Terms of Service</a>
<a href="#" class="text-gray-500 hover:text-blue-400 transition">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x3b82f6,
backgroundColor: 0x111827,
size: 0.8
});
feather.replace();
// Mobile menu toggle functionality would go here
document.getElementById('mobile-menu-button').addEventListener('click', function() {
// This would toggle a mobile menu
console.log('Mobile menu toggled');
});
</script>
</body>
</html>
|