Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>TRX Nova Mining | Next-Gen Cloud Mining</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"> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: { | |
| light: '#3b82f6', | |
| DEFAULT: '#1a73e8', | |
| dark: '#1e40af' | |
| }, | |
| trx: { | |
| light: '#ff4d4f', | |
| DEFAULT: '#FF060A', | |
| dark: '#d90408' | |
| }, | |
| dark: '#111827', | |
| light: '#f8fafc', | |
| 'dark-blue': '#1e2a47', | |
| 'neon-blue': '#00f0ff', | |
| 'neon-pink': '#ff00f0' | |
| }, | |
| fontFamily: { | |
| sans: ['Inter', 'sans-serif'], | |
| heading: ['Poppins', 'sans-serif'], | |
| tech: ['Rajdhani', 'sans-serif'] | |
| }, | |
| animation: { | |
| 'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite', | |
| 'float': 'float 6s ease-in-out infinite', | |
| 'glow': 'glow 2s ease-in-out infinite alternate', | |
| 'gradient': 'gradient 8s ease infinite', | |
| 'fade-in': 'fadeIn 0.5s ease-in' | |
| }, | |
| keyframes: { | |
| float: { | |
| '0%, 100%': { transform: 'translateY(0)' }, | |
| '50%': { transform: 'translateY(-10px)' } | |
| }, | |
| glow: { | |
| '0%': { 'box-shadow': '0 0 5px rgba(255, 6, 10, 0.5)' }, | |
| '100%': { 'box-shadow': '0 0 20px rgba(255, 6, 10, 0.8)' } | |
| }, | |
| gradient: { | |
| '0%': { 'background-position': '0% 50%' }, | |
| '50%': { 'background-position': '100% 50%' }, | |
| '100%': { 'background-position': '0% 50%' } | |
| }, | |
| fadeIn: { | |
| '0%': { opacity: '0', transform: 'translateY(20px)' }, | |
| '100%': { opacity: '1', transform: 'translateY(0)' } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&family=Rajdhani:wght@500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| background-color: #f5f7ff; | |
| scroll-behavior: smooth; | |
| overflow-x: hidden; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #1a73e8 0%, #3b46f2 100%); | |
| } | |
| .trx-gradient-bg { | |
| background: linear-gradient(135deg, #FF060A 0%, #DA0037 100%); | |
| } | |
| .neon-gradient-bg { | |
| background: linear-gradient(45deg, #FF060A, #1a73e8, #00f0ff); | |
| background-size: 300% 300%; | |
| } | |
| .trx-glow { | |
| box-shadow: 0 0 20px rgba(255, 6, 10, 0.4); | |
| } | |
| .card-hover { | |
| transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); | |
| } | |
| .card-hover:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.08); | |
| } | |
| .nav-link { | |
| position: relative; | |
| } | |
| .nav-link::after { | |
| content: ''; | |
| position: absolute; | |
| width: 0; | |
| height: 2px; | |
| bottom: -2px; | |
| left: 0; | |
| background-color: #1a73e8; | |
| transition: width 0.3s ease; | |
| } | |
| .nav-link:hover::after { | |
| width: 100%; | |
| } | |
| .active::after { | |
| width: 100%; | |
| } | |
| .mining-stats-shadow { | |
| box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03); | |
| } | |
| .feature-card:hover .feature-icon { | |
| transform: scale(1.1); | |
| } | |
| .feature-icon { | |
| transition: all 0.3s ease; | |
| } | |
| .scroll-hidden::-webkit-scrollbar { | |
| display: none; | |
| } | |
| .scroll-hidden { | |
| -ms-overflow-style: none; | |
| scrollbar-width: none; | |
| } | |
| .typing-effect::after { | |
| content: '..'; | |
| animation: typing 1.5s steps(2, end) infinite; | |
| } | |
| @keyframes typing { | |
| 0% { content: '.'; } | |
| 33% { content: '..'; } | |
| 66% { content: '...'; } | |
| } | |
| .gradient-text { | |
| background: linear-gradient(45deg, #FF060A, #1a73e8); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| color: transparent; | |
| } | |
| .neon-text { | |
| text-shadow: 0 0 5px rgba(0, 240, 255, 0.5), 0 0 10px rgba(0, 240, 255, 0.3); | |
| } | |
| .particle { | |
| position: absolute; | |
| border-radius: 50%; | |
| background: rgba(255, 255, 255, 0.2); | |
| pointer-events: none; | |
| } | |
| .tech-border { | |
| border: 1px solid rgba(255, 255, 255, 0.1); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .tech-border::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| height: 1px; | |
| background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.8), transparent); | |
| } | |
| .tech-border::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: 0; | |
| left: 0; | |
| right: 0; | |
| height: 1px; | |
| background: linear-gradient(90deg, transparent, rgba(255, 6, 10, 0.8), transparent); | |
| } | |
| .dashboard-card { | |
| background: rgba(31, 41, 55, 0.7); | |
| backdrop-filter: blur(10px); | |
| border: 1px solid rgba(255, 255, 255, 0.1); | |
| transition: all 0.3s ease; | |
| } | |
| .dashboard-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); | |
| } | |
| .plan-card { | |
| transition: all 0.3s ease; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .plan-card:hover { | |
| transform: translateY(-10px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
| } | |
| .plan-card.popular::before { | |
| content: 'POPULAR'; | |
| position: absolute; | |
| top: 20px; | |
| right: -30px; | |
| background: #FF060A; | |
| color: white; | |
| padding: 2px 30px; | |
| font-size: 12px; | |
| font-weight: bold; | |
| transform: rotate(45deg); | |
| box-shadow: 0 2px 5px rgba(0,0,0,0.2); | |
| } | |
| .testimonial-card { | |
| transition: all 0.3s ease; | |
| background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%); | |
| backdrop-filter: blur(10px); | |
| } | |
| .testimonial-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
| } | |
| .faq-item { | |
| transition: all 0.3s ease; | |
| background: rgba(249, 250, 251, 0.8); | |
| backdrop-filter: blur(5px); | |
| } | |
| .faq-item:hover { | |
| background: rgba(249, 250, 251, 1); | |
| } | |
| .mining-rig { | |
| position: relative; | |
| width: 300px; | |
| height: 200px; | |
| margin: 0 auto; | |
| } | |
| .server-rack { | |
| position: absolute; | |
| width: 100%; | |
| height: 150px; | |
| bottom: 0; | |
| background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%); | |
| border-radius: 5px; | |
| box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2); | |
| } | |
| .server { | |
| position: absolute; | |
| width: 40px; | |
| height: 80px; | |
| background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%); | |
| border-radius: 3px; | |
| bottom: 150px; | |
| left: 50%; | |
| transform: translateX(-50%); | |
| box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); | |
| } | |
| .server::before { | |
| content: ''; | |
| position: absolute; | |
| width: 100%; | |
| height: 5px; | |
| background: #FF060A; | |
| bottom: 0; | |
| left: 0; | |
| border-radius: 0 0 3px 3px; | |
| animation: glow 1.5s ease-in-out infinite alternate; | |
| } | |
| .led { | |
| position: absolute; | |
| width: 8px; | |
| height: 8px; | |
| border-radius: 50%; | |
| background: #00f0ff; | |
| box-shadow: 0 0 5px #00f0ff; | |
| animation: glow 1s ease-in-out infinite alternate; | |
| } | |
| .led-1 { top: 15px; left: 10px; } | |
| .led-2 { top: 15px; right: 10px; background: #FF060A; box-shadow: 0 0 5px #FF060A; } | |
| .led-3 { bottom: 15px; left: 10px; } | |
| .led-4 { bottom: 15px; right: 10px; background: #FF060A; box-shadow: 0 0 5px #FF060A; } | |
| .server-panel { | |
| position: absolute; | |
| width: 30px; | |
| height: 60px; | |
| background: rgba(0, 0, 0, 0.2); | |
| border-radius: 2px; | |
| bottom: 10px; | |
| left: 5px; | |
| } | |
| .rack-unit { | |
| position: absolute; | |
| width: 90%; | |
| height: 20px; | |
| background: rgba(255, 255, 255, 0.05); | |
| left: 5%; | |
| border-radius: 2px; | |
| } | |
| .rack-unit:nth-child(1) { top: 10px; } | |
| .rack-unit:nth-child(2) { top: 35px; } | |
| .rack-unit:nth-child(3) { top: 60px; } | |
| .rack-unit:nth-child(4) { top: 85px; } | |
| .rack-unit:nth-child(5) { top: 110px; } | |
| .crypto-chip { | |
| position: absolute; | |
| width: 20px; | |
| height: 20px; | |
| background: linear-gradient(135deg, #FF060A, #1a73e8); | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| color: white; | |
| font-size: 10px; | |
| font-weight: bold; | |
| box-shadow: 0 2px 5px rgba(0,0,0,0.2); | |
| animation: float 4s ease-in-out infinite; | |
| } | |
| .crypto-chip:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; } | |
| .crypto-chip:nth-child(2) { top: 30%; right: 15%; animation-delay: 0.5s; } | |
| .crypto-chip:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 1s; } | |
| .crypto-chip:nth-child(4) { bottom: 30%; right: 10%; animation-delay: 1.5s; } | |
| .trx-logo { | |
| width: 50px; | |
| height: 50px; | |
| background: linear-gradient(135deg, #FF060A, #DA0037); | |
| border-radius: 12px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| color: white; | |
| font-weight: bold; | |
| transform: rotate(15deg); | |
| box-shadow: 0 5px 15px rgba(255, 6, 10, 0.4); | |
| } | |
| .trx-logo i { | |
| transform: rotate(-15deg); | |
| } | |
| .network-node { | |
| position: absolute; | |
| width: 10px; | |
| height: 10px; | |
| background: #00f0ff; | |
| border-radius: 50%; | |
| box-shadow: 0 0 10px #00f0ff; | |
| animation: glow 2s ease-in-out infinite alternate; | |
| } | |
| .network-line { | |
| position: absolute; | |
| background: rgba(0, 240, 255, 0.3); | |
| transform-origin: 0 0; | |
| } | |
| </style> | |
| </head> | |
| <body class="antialiased"> | |
| <!-- Floating particles --> | |
| <div id="particles-js"></div> | |
| <!-- Header/Navbar --> | |
| <header class="fixed w-full bg-white/90 backdrop-blur-md shadow-sm z-50"> | |
| <div class="container mx-auto px-4 py-3 flex justify-between items-center"> | |
| <div class="flex items-center space-x-3"> | |
| <div class="trx-logo"> | |
| <i class="fas fa-bolt text-xl"></i> | |
| </div> | |
| <span class="text-2xl font-bold font-heading">TRX<span class="gradient-text">Nova</span></span> | |
| </div> | |
| <nav class="hidden lg:flex space-x-8"> | |
| <a href="#home" class="nav-link active font-medium text-dark">Home</a> | |
| <a href="#features" class="nav-link font-medium text-gray-600 hover:text-dark">Features</a> | |
| <a href="#plans" class="nav-link font-medium text-gray-600 hover:text-dark">Plans</a> | |
| <a href="#stats" class="nav-link font-medium text-gray-600 hover:text-dark">Stats</a> | |
| <a href="#faq" class="nav-link font-medium text-gray-600 hover:text-dark">FAQ</a> | |
| </nav> | |
| <div class="flex items-center space-x-4"> | |
| <button class="hidden md:flex items-center space-x-2 px-4 py-2 font-medium text-gray-600 hover:text-primary group"> | |
| <span>Login</span> | |
| <i class="fas fa-arrow-right group-hover:translate-x-1 transition-transform"></i> | |
| </button> | |
| <button class="trx-gradient-bg text-white px-6 py-2.5 rounded-lg font-bold hover:bg-trx-dark transition-all duration-300 shadow-md hover:shadow-lg hover:scale-105"> | |
| Get Started | |
| </button> | |
| <button id="mobile-menu-button" class="lg:hidden text-gray-600 hover:text-primary"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Mobile Menu --> | |
| <div id="mobile-menu" class="hidden lg:hidden bg-white shadow-lg pb-6 pt-2 px-6 absolute w-full z-40"> | |
| <div class="flex flex-col space-y-3"> | |
| <a href="#home" class="block py-3 font-medium border-b border-gray-100 text-primary">Home</a> | |
| <a href="#features" class="block py-3 font-medium border-b border-gray-100 text-gray-600 hover:text-dark">Features</a> | |
| <a href="#plans" class="block py-3 font-medium border-b border-gray-100 text-gray-600 hover:text-dark">Plans</a> | |
| <a href="#stats" class="block py-3 font-medium border-b border-gray-100 text-gray-600 hover:text-dark">Stats</a> | |
| <a href="#faq" class="block py-3 font-medium border-b border-gray-100 text-gray-600 hover:text-dark">FAQ</a> | |
| <button class="w-full trx-gradient-bg text-white px-6 py-3 rounded-lg font-bold mt-4 mb-2 hover:bg-trx-dark transition-all duration-300 shadow-md hover:scale-105"> | |
| Start Mining | |
| </button> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section id="home" class="gradient-bg text-white pt-32 pb-24 relative overflow-hidden"> | |
| <!-- Animated network nodes --> | |
| <div class="network-node" style="top: 10%; left: 5%;"></div> | |
| <div class="network-node" style="top: 20%; right: 10%;"></div> | |
| <div class="network-node" style="bottom: 15%; left: 15%;"></div> | |
| <div class="network-node" style="bottom: 25%; right: 5%;"></div> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col lg:flex-row items-center"> | |
| <div class="lg:w-1/2 mb-14 lg:mb-0"> | |
| <div class="inline-block bg-white/10 backdrop-blur-md rounded-xl px-4 py-1.5 mb-4 animate-fade-in"> | |
| <span class="font-medium">Fastest Growing Cloud Mining Platform</span> | |
| </div> | |
| <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-6 leading-tight font-heading animate-fade-in"> | |
| Mine <span class="text-trx">TRX</span> Smarter <br> With Cloud Power | |
| </h1> | |
| <p class="text-xl mb-8 opacity-90 max-w-xl animate-fade-in">Join thousands earning passive income with our state-of-the-art TRON mining infrastructure. No hardware, no maintenance, just profits.</p> | |
| <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4 animate-fade-in"> | |
| <button class="flex items-center justify-center space-x-2 bg-white text-primary px-8 py-3.5 rounded-lg font-bold hover:bg-gray-100 transition-all duration-300 shadow-lg hover:shadow-xl hover:scale-105"> | |
| <span>Start Mining Now</span> | |
| <i class="fas fa-rocket"></i> | |
| </button> | |
| <button class="flex items-center justify-center space-x-2 border-2 border-white text-white px-8 py-3.5 rounded-lg font-bold hover:bg-white hover:text-primary transition-all duration-300 shadow-lg hover:shadow-xl hover:scale-105"> | |
| <span>Live Demo</span> | |
| <i class="fas fa-play"></i> | |
| </button> | |
| </div> | |
| <div class="mt-12 flex flex-wrap items-center gap-4 animate-fade-in"> | |
| <div class="flex items-center space-x-2 bg-white/10 rounded-full px-4 py-2"> | |
| <i class="fas fa-check-circle text-green-400"></i> | |
| <span class="text-sm">No Setup Fees</span> | |
| </div> | |
| <div class="flex items-center space-x-2 bg-white/10 rounded-full px-4 py-2"> | |
| <i class="fas fa-check-circle text-green-400"></i> | |
| <span class="text-sm">Instant Activation</span> | |
| </div> | |
| <div class="flex items-center space-x-2 bg-white/10 rounded-full px-4 py-2"> | |
| <i class="fas fa-check-circle text-green-400"></i> | |
| <span class="text-sm">24/7 Customer Support</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="lg:w-1/2 flex justify-center relative"> | |
| <div class="relative w-full max-w-xl"> | |
| <!-- Floating elements --> | |
| <div class="absolute -top-6 -left-6 w-40 h-40 bg-white/5 rounded-full animate-pulse-slow"></div> | |
| <div class="absolute -bottom-10 -right-10 w-40 h-40 bg-trx/10 rounded-full animate-pulse-slow animation-delay-2000"></div> | |
| <div class="absolute top-20 -right-12 w-24 h-24 bg-primary/10 rounded-xl rotate-12 animate-pulse-slow animation-delay-1000"></div> | |
| <!-- Main card --> | |
| <div class="relative bg-white/5 backdrop-blur-md rounded-2xl p-8 border border-white/20 trx-glow overflow-hidden animate-fade-in"> | |
| <div class="absolute -top-20 -right-20 w-60 h-60 bg-trx/10 rounded-full filter blur-2xl"></div> | |
| <div class="absolute -bottom-20 -left-20 w-60 h-60 bg-primary/10 rounded-full filter blur-2xl"></div> | |
| <div class="relative z-10"> | |
| <div class="text-center mb-8"> | |
| <h3 class="text-2xl font-bold mb-2">Calculate Your Earnings</h3> | |
| <p class="opacity-80">See estimated returns based on your investment</p> | |
| </div> | |
| <div class="bg-white/10 rounded-xl p-5 mb-6"> | |
| <div class="flex justify-between items-center mb-2"> | |
| <label class="block text-sm font-medium">Hash Power</label> | |
| <span class="text-sm font-mono font-medium">100 GH/s</span> | |
| </div> | |
| <input type="range" min="10" max="1000" value="100" class="w-full h-2 bg-white/20 rounded-lg appearance-none cursor-pointer"> | |
| <div class="flex justify-between text-xs mt-1"> | |
| <span>10 GH/s</span> | |
| <span>1000 GH/s</span> | |
| </div> | |
| </div> | |
| <div class="bg-white/10 rounded-xl p-5 mb-6"> | |
| <label class="block text-sm font-medium mb-3">Mining Contract Duration</label> | |
| <div class="grid grid-cols-4 gap-2"> | |
| <button class="bg-white/15 rounded-lg px-3 py-2 text-sm hover:bg-white/20">1 Day</button> | |
| <button class="bg-primary/90 text-white rounded-lg px-3 py-2 text-sm hover:bg-primary">7 Days</button> | |
| <button class="bg-white/15 rounded-lg px-3 py-2 text-sm hover:bg-white/20">30 Days</button> | |
| <button class="bg-white/15 rounded-lg px-3 py-2 text-sm hover:bg-white/20">1 Year</button> | |
| </div> | |
| </div> | |
| <div class="bg-primary/90 text-white rounded-xl p-5 mt-6 text-center"> | |
| <div class="text-sm font-medium mb-1">Estimated Daily Profit</div> | |
| <div class="text-2xl font-bold font-mono">≈ 42.8 TRX</div> | |
| <div class="text-xs opacity-80 mt-1">Based on current network difficulty</div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Partner Logos --> | |
| <section class="py-12 bg-gray-50 border-b"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-10"> | |
| <h4 class="text-gray-500 uppercase tracking-wider text-sm font-medium">Trusted by industry leaders</h4> | |
| </div> | |
| <div class="flex flex-wrap justify-center items-center gap-8 md:gap-12 opacity-50"> | |
| <img src="https://via.placeholder.com/150x60?text=Tron" alt="Tron" class="h-8 opacity-70 hover:opacity-100 transition-opacity"> | |
| <img src="https://via.placeholder.com/150x60?text=Binance" alt="Binance" class="h-8 opacity-70 hover:opacity-100 transition-opacity"> | |
| <img src="https://via.placeholder.com/150x60?text=Coinbase" alt="Coinbase" class="h-8 opacity-70 hover:opacity-100 transition-opacity"> | |
| <img src="https://via.placeholder.com/150x60?text=Bitmain" alt="Bitmain" class="h-8 opacity-70 hover:opacity-100 transition-opacity"> | |
| <img src="https://via.placeholder.com/150x60?text=Huobi" alt="Huobi" class="h-8 opacity-70 hover:opacity-100 transition-opacity"> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Stats Section --> | |
| <section id="stats" class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6"> | |
| <div class="bg-gray-50 rounded-2xl p-8 mining-stats-shadow hover:bg-gradient-to-br hover:from-white hover:to-gray-100 transition-all duration-300"> | |
| <div class="flex items-start space-x-4"> | |
| <div class="bg-primary/10 text-primary p-3 rounded-lg"> | |
| <i class="fas fa-users text-xl"></i> | |
| </div> | |
| <div> | |
| <div class="text-4xl font-bold text-primary mb-2" id="users-count">0</div> | |
| <div class="text-gray-600 font-medium">Active Miners</div> | |
| <div class="text-sm text-green-500 mt-1 flex items-center"> | |
| <i class="fas fa-arrow-up mr-1"></i> | |
| <span>12% this month</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-50 rounded-2xl p-8 mining-stats-shadow hover:bg-gradient-to-br hover:from-white hover:to-gray-100 transition-all duration-300"> | |
| <div class="flex items-start space-x-4"> | |
| <div class="bg-trx/10 text-trx p-3 rounded-lg"> | |
| <i class="fas fa-microchip text-xl"></i> | |
| </div> | |
| <div> | |
| <div class="text-4xl font-bold text-trx mb-2" id="thash-count">0</div> | |
| <div class="text-gray-600 font-medium">TH/s Mining Power</div> | |
| <div class="text-sm text-green-500 mt-1 flex items-center"> | |
| <i class="fas fa-arrow-up mr-1"></i> | |
| <span>5.4% growth</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-50 rounded-2xl p-8 mining-stats-shadow hover:bg-gradient-to-br hover:from-white hover:to-gray-100 transition-all duration-300"> | |
| <div class="flex items-start space-x-4"> | |
| <div class="bg-primary/10 text-primary p-3 rounded-lg"> | |
| <i class="fas fa-coins text-xl"></i> | |
| </div> | |
| <div> | |
| <div class="text-4xl font-bold text-primary mb-2" id="mined-count">0</div> | |
| <div class="text-gray-600 font-medium">TRX Mined</div> | |
| <div class="text-sm text-green-500 mt-1 flex items-center"> | |
| <i class="fas fa-arrow-up mr-1"></i> | |
| <span>7.2% increase</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-50 rounded-2xl p-8 mining-stats-shadow hover:bg-gradient-to-br hover:from-white hover:to-gray-100 transition-all duration-300"> | |
| <div class="flex items-start space-x-4"> | |
| <div class="bg-trx/10 text-trx p-3 rounded-lg"> | |
| <i class="fas fa-wallet text-xl"></i> | |
| </div> | |
| <div> | |
| <div class="text-4xl font-bold text-trx mb-2" id="payouts-count">0</div> | |
| <div class="text-gray-600 font-medium">Daily Payouts</div> | |
| <div class="text-sm text-green-500 mt-1 flex items-center"> | |
| <i class="fas fa-arrow-up mr-1"></i> | |
| <span>99.8% success rate</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section id="features" class="py-20 bg-gradient-to-b from-gray-50 to-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center max-w-4xl mx-auto mb-16"> | |
| <div class="inline-block bg-primary/10 text-primary rounded-full px-6 py-1.5 mb-4"> | |
| <span class="font-medium">Why Choose Us</span> | |
| </div> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4 font-heading">Industry Leading <span class="gradient-text">TRON Mining</span></h2> | |
| <p class="text-xl text-gray-600">Our platform combines cutting-edge technology with user-friendly features to deliver exceptional mining performance</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <div class="feature-card bg-white rounded-2xl p-8 card-hover border border-gray-100"> | |
| <div class="feature-icon w-16 h-16 bg-primary/10 text-primary rounded-2xl flex items-center justify-center mb-6"> | |
| <i class="fas fa-rocket text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Instant Activation</h3> | |
| <p class="text-gray-600">Start mining TRX within minutes after registration with our automated activation system. No waiting periods.</p> | |
| <a href="#" class="inline-flex items-center mt-4 text-primary font-medium group"> | |
| Learn more | |
| <i class="fas fa-arrow-right ml-2 group-hover:translate-x-1 transition-transform"></i> | |
| </a> | |
| </div> | |
| <div class="feature-card bg-white rounded-2xl p-8 card-hover border border-gray-100"> | |
| <div class="feature-icon w-16 h-16 bg-trx/10 text-trx rounded-2xl flex items-center justify-center mb-6"> | |
| <i class="fas fa-shield-alt text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Enterprise Security</h3> | |
| <p class="text-gray-600">Military-grade encryption and multi-signature wallets protect your assets with bank-level security standards.</p> | |
| <a href="#" class="inline-flex items-center mt-4 text-primary font-medium group"> | |
| Learn more | |
| <i class="fas fa-arrow-right ml-2 group-hover:translate-x-1 transition-transform"></i> | |
| </a> | |
| </div> | |
| <div class="feature-card bg-white rounded-2xl p-8 card-hover border border-gray-100"> | |
| <div class="feature-icon w-16 h-16 bg-primary/10 text-primary rounded-2xl flex items-center justify-center mb-6"> | |
| <i class="fas fa-tachometer-alt text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Maximum Uptime</h3> | |
| <p class="text-gray-600">Our redundant infrastructure guarantees 99.95% uptime, ensuring your miners are always running optimally.</p> | |
| <a href="#" class="inline-flex items-center mt-4 text-primary font-medium group"> | |
| Learn more | |
| <i class="fas fa-arrow-right ml-2 group-hover:translate-x-1 transition-transform"></i> | |
| </a> | |
| </div> | |
| <div class="feature-card bg-white rounded-2xl p-8 card-hover border border-gray-100"> | |
| <div class="feature-icon w-16 h-16 bg-trx/10 text-trx rounded-2xl flex items-center justify-center mb-6"> | |
| <i class="fas fa-money-bill-wave text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Daily Payouts</h3> | |
| <p class="text-gray-600">Receive your mining rewards directly to your wallet every 24 hours with just 5 TRX minimum withdrawal.</p> | |
| <a href="#" class="inline-flex items-center mt-4 text-primary font-medium group"> | |
| Learn more | |
| <i class="fas fa-arrow-right ml-2 group-hover:translate-x-1 transition-transform"></i> | |
| </a> | |
| </div> | |
| <div class="feature-card bg-white rounded-2xl p-8 card-hover border border-gray-100"> | |
| <div class="feature-icon w-16 h-16 bg-primary/10 text-primary rounded-2xl flex items-center justify-center mb-6"> | |
| <i class="fas fa-headset text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">24/7 Support</h3> | |
| <p class="text-gray-600">Our expert support team is available round the clock via live chat, email, and phone to assist you.</p> | |
| <a href="#" class="inline-flex items-center mt-4 text-primary font-medium group"> | |
| Learn more | |
| <i class="fas fa-arrow-right ml-2 group-hover:translate-x-1 transition-transform"></i> | |
| </a> | |
| </div> | |
| <div class="feature-card bg-white rounded-2xl p-8 card-hover border border-gray-100"> | |
| <div class="feature-icon w-16 h-16 bg-trx/10 text-trx rounded-2xl flex items-center justify-center mb-6"> | |
| <i class="fas fa-user-friends text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Referral Program</h3> | |
| <p class="text-gray-600">Earn 5% lifetime commission from every user you refer. Bonus rewards for top referrers each month.</p> | |
| <a href="#" class="inline-flex items-center mt-4 text-primary font-medium group"> | |
| Learn more | |
| <i class="fas fa-arrow-right ml-2 group-hover:translate-x-1 transition-transform"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Mining Visualization --> | |
| <section class="py-16 bg-gray-900 text-white relative overflow-hidden"> | |
| <div class="absolute inset-0 bg-gradient-to-br from-primary/10 to-trx/10 opacity-20"></div> | |
| <div class="container mx-auto px-4 relative z-10"> | |
| <div class="flex flex-col lg:flex-row items-center"> | |
| <div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12"> | |
| <div class="inline-block bg-white/10 rounded-full px-5 py-1.5 mb-5"> | |
| <span class="font-medium">Our Technology</span> | |
| </div> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6 font-heading">Advanced <span class="text-primary">Mining Infrastructure</span></h2> | |
| <p class="text-gray-300 mb-8 text-lg">Our data centers utilize the latest ASIC miners optimized for TRON blockchain, ensuring maximum efficiency and profitability.</p> | |
| <div class="space-y-6"> | |
| <div class="flex items-start"> | |
| <div class="bg-primary/20 text-primary p-3 rounded-lg mr-4"> | |
| <i class="fas fa-bolt"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-2">Energy Efficient</h4> | |
| <p class="text-gray-400">Our mining farms use renewable energy sources, reducing carbon footprint by 40% compared to industry average.</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="bg-primary/20 text-primary p-3 rounded-lg mr-4"> | |
| <i class="fas fa-server"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-2">Redundant Systems</h4> | |
| <p class="text-gray-400">Multiple backup systems ensure uninterrupted mining operations even during maintenance or unexpected outages.</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="bg-primary/20 text-primary p-3 rounded-lg mr-4"> | |
| <i class="fas fa-chart-line"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-2">Real-time Optimization</h4> | |
| <p class="text-gray-400">AI-powered algorithms constantly adjust mining parameters to maximize returns based on network conditions.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="lg:w-1/2"> | |
| <div class="mining-rig"> | |
| <div class="server"> | |
| <div class="led led-1"></div> | |
| <div class="led led-2"></div> | |
| <div class="led led-3"></div> | |
| <div class="led led-4"></div> | |
| <div class="server-panel"></div> | |
| </div> | |
| <div class="server-rack"> | |
| <div class="rack-unit"></div> | |
| <div class="rack-unit"></div> | |
| <div class="rack-unit"></div> | |
| <div class="rack-unit"></div> | |
| <div class="rack-unit"></div> | |
| </div> | |
| <div class="crypto-chip">TRX</div> | |
| <div class="crypto-chip">BTC</div> | |
| <div class="crypto-chip">ETH</div> | |
| <div class="crypto-chip">USDT</div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Dashboard Preview Section --> | |
| <section class="py-12 bg-gray-900 text-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col lg:flex-row items-center"> | |
| <div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12"> | |
| <div class="inline-block bg-white/10 rounded-full px-5 py-1.5 mb-5"> | |
| <span class="font-medium">User Dashboard</span> | |
| </div> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6 font-heading">Real-Time Mining <span class="text-primary">Analytics</span></h2> | |
| <p class="text-gray-300 mb-8 text-lg">Our intuitive dashboard provides detailed insights into your mining performance, earnings history, and network statistics.</p> | |
| <div class="grid grid-cols-2 gap-4 mb-8"> | |
| <div class="dashboard-card rounded-xl p-5"> | |
| <div class="text-gray-400 text-sm mb-1">Current Balance</div> | |
| <div class="text-2xl font-bold text-trx" id="user-balance">0 TRX</div> | |
| </div> | |
| <div class="dashboard-card rounded-xl p-5"> | |
| <div class="text-gray-400 text-sm mb-1">Daily Earnings</div> | |
| <div class="text-2xl font-bold text-primary" id="daily-earnings">0 TRX</div> | |
| </div> | |
| <div class="dashboard-card rounded-xl p-5"> | |
| <div class="text-gray-400 text-sm mb-1">Hash Power</div> | |
| <div class="text-2xl font-bold" id="user-hashrate">0 GH/s</div> | |
| </div> | |
| <div class="dashboard-card rounded-xl p-5"> | |
| <div class="text-gray-400 text-sm mb-1">Mining Since</div> | |
| <div class="text-xl font-medium" id="mining-since">--</div> | |
| </div> | |
| </div> | |
| <button class="trx-gradient-bg text-white px-8 py-3.5 rounded-lg font-bold hover:bg-trx-dark transition-all duration-300 shadow-lg hover:scale-105"> | |
| Explore Dashboard Features | |
| </button> | |
| </div> | |
| <div class="lg:w-1/2 relative"> | |
| <div class="relative bg-gray-800/50 rounded-2xl border border-gray-700 overflow-hidden"> | |
| <div class="absolute inset-0 bg-gradient-to-br from-primary/10 to-trx/10 opacity-30"></div> | |
| <!-- Dashboard tabs --> | |
| <div class="relative z-10 bg-gray-800 border-b border-gray-700 flex px-6"> | |
| <div class="py-3 px-4 border-b-2 border-primary text-primary font-medium">Dashboard</div> | |
| <div class="py-3 px-4 text-gray-500 hover:text-white">Earnings</div> | |
| <div class="py-3 px-4 text-gray-500 hover:text-white">Statistics</div> | |
| <div class="py-3 px-4 text-gray-500 hover:text-white">Settings</div> | |
| </div> | |
| <!-- Dashboard content --> | |
| <div class="relative z-10 p-6"> | |
| <!-- Chart placeholder --> | |
| <div class="bg-gray-700/50 rounded-xl h-48 mb-6 flex items-center justify-center text-gray-400"> | |
| <i class="fas fa-chart-line text-4xl"></i> | |
| </div> | |
| <!-- Stats grid --> | |
| <div class="grid grid-cols-3 gap-4 mb-6"> | |
| <div class="bg-gray-700/30 rounded-lg p-3 text-center"> | |
| <div class="text-xs text-gray-400 mb-1">Today's Profit</div> | |
| <div class="font-medium">8.2 TRX</div> | |
| </div> | |
| <div class="bg-gray-700/30 rounded-lg p-3 text-center"> | |
| <div class="text-xs text-gray-400 mb-1">This Week</div> | |
| <div class="font-medium">52.7 TRX</div> | |
| </div> | |
| <div class="bg-gray-700/30 rounded-lg p-3 text-center"> | |
| <div class="text-xs text-gray-400 mb-1">All Time</div> | |
| <div class="font-medium">142.8 TRX</div> | |
| </div> | |
| </div> | |
| <!-- Recent activity --> | |
| <div> | |
| <div class="flex justify-between items-center mb-3"> | |
| <h4 class="font-medium">Recent Activity</h4> | |
| <a href="#" class="text-xs text-primary hover:underline">View All</a> | |
| </div> | |
| <div class="space-y-3"> | |
| <div class="flex items-center justify-between text-sm"> | |
| <div class="flex items-center"> | |
| <div class="w-8 h-8 rounded-full bg-primary/20 text-primary flex items-center justify-center mr-3"> | |
| <i class="fas fa-coins"></i> | |
| </div> | |
| <span>Daily Mining Reward</span> | |
| </div> | |
| <span class="font-mono text-trx">+7.43 TRX</span> | |
| </div> | |
| <div class="flex items-center justify-between text-sm"> | |
| <div class="flex items-center"> | |
| <div class="w-8 h-8 rounded-full bg-green-500/20 text-green-500 flex items-center justify-center mr-3"> | |
| <i class="fas fa-arrow-down"></i> | |
| </div> | |
| <span>Withdrawal Processed</span> | |
| </div> | |
| <span class="font-mono text-green-500">-100 TRX</span> | |
| </div> | |
| <div class="flex items-center justify-between text-sm"> | |
| <div class="flex items-center"> | |
| <div class="w-8 h-8 rounded-full bg-blue-500/20 text-blue-500 flex items-center justify-center mr-3"> | |
| <i class="fas fa-bolt"></i> | |
| </div> | |
| <span>Hash Power Increased</span> | |
| </div> | |
| <span class="font-mono">+50 GH/s</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="absolute -bottom-8 -left-8 w-40 h-40 bg-primary/20 rounded-full filter blur-2xl -z-10"></div> | |
| <div class="absolute -top-8 -right-8 w-40 h-40 bg-trx/20 rounded-full filter blur-2xl -z-10"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Pricing Section --> | |
| <section id="plans" class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center max-w-2xl mx-auto mb-16"> | |
| <div class="inline-block bg-primary/10 text-primary rounded-full px-6 py-1.5 mb-5"> | |
| <span class="font-medium">Mining Plans</span> | |
| </div> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4 font-heading">Flexible <span class="gradient-text">Mining Options</span></h2> | |
| <p class="text-xl text-gray-600">Choose the perfect plan that matches your investment goals and budget</p> | |
| </div> | |
| <div class="flex justify-center mb-8"> | |
| <div class="inline-flex bg-gray-100 rounded-full p-1"> | |
| <button class="px-5 py-2 rounded-full bg-white shadow-sm font-medium">Monthly</button> | |
| <button class="px-5 py-2 rounded-full text-gray-600 hover:text-gray-900 font-medium">Yearly <span class="text-green-500 ml-1">(Save 10%)</span></button> | |
| </div> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6"> | |
| <!-- Starter Plan --> | |
| <div class="plan-card bg-white rounded-xl border border-gray-200 shadow-sm hover:shadow-md transition-all duration-300"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2">Starter</h3> | |
| <p class="text-gray-600 mb-6">Perfect for testing the platform</p> | |
| <div class="text-4xl font-bold mb-4">$29<span class="text-lg text-gray-500">/month</span></div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>10 GH/s Mining Power</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>Daily Earnings</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>24/7 Monitoring</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>Basic Support</span> | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-100 text-gray-800 font-bold py-3 rounded-lg hover:bg-gray-200 transition-colors hover:scale-105"> | |
| Select Plan | |
| </button> | |
| </div> | |
| <div class="bg-gray-50 px-6 py-3 border-t border-gray-200 text-sm text-gray-600"> | |
| ≈ 4.2 TRX daily revenue | |
| </div> | |
| </div> | |
| <!-- Advanced Plan --> | |
| <div class="plan-card popular bg-white rounded-xl border-2 border-primary shadow-md hover:shadow-lg transition-all duration-300 relative overflow-hidden"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2">Advanced</h3> | |
| <p class="text-gray-600 mb-6">Great for serious miners</p> | |
| <div class="text-4xl font-bold mb-4">$99<span class="text-lg text-gray-500">/month</span></div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>100 GH/s Mining Power</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>Daily Earnings</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>24/7 Monitoring</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>Priority Support</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>Bonus Hash Power</span> | |
| </li> | |
| </ul> | |
| <button class="w-full bg-primary text-white font-bold py-3 rounded-lg hover:bg-primary-dark transition-colors shadow-md hover:shadow-lg hover:scale-105"> | |
| Select Plan | |
| </button> | |
| </div> | |
| <div class="bg-gray-50 px-6 py-3 border-t border-gray-200 text-sm text-gray-600"> | |
| ≈ 42.5 TRX daily revenue | |
| </div> | |
| </div> | |
| <!-- Professional Plan --> | |
| <div class="plan-card bg-white rounded-xl border border-gray-200 shadow-sm hover:shadow-md transition-all duration-300"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2">Professional</h3> | |
| <p class="text-gray-600 mb-6">For professional miners</p> | |
| <div class="text-4xl font-bold mb-4">$299<span class="text-lg text-gray-500">/month</span></div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>300 GH/s Mining Power</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>Daily Earnings</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>24/7 Monitoring</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>Priority Support</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>Custom Dashboard</span> | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-100 text-gray-800 font-bold py-3 rounded-lg hover:bg-gray-200 transition-colors hover:scale-105"> | |
| Select Plan | |
| </button> | |
| </div> | |
| <div class="bg-gray-50 px-6 py-3 border-t border-gray-200 text-sm text-gray-600"> | |
| ≈ 127.5 TRX daily revenue | |
| </div> | |
| </div> | |
| <!-- Enterprise Plan --> | |
| <div class="plan-card bg-white rounded-xl border border-gray-200 shadow-sm hover:shadow-md transition-all duration-300"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2">Enterprise</h3> | |
| <p class="text-gray-600 mb-6">For large-scale operations</p> | |
| <div class="text-4xl font-bold mb-4">$899<span class="text-lg text-gray-500">/month</span></div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>1000 GH/s Mining Power</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>Daily Earnings</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>24/7 Monitoring</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>Dedicated Manager</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span>Custom Solutions</span> | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-100 text-gray-800 font-bold py-3 rounded-lg hover:bg-gray-200 transition-colors hover:scale-105"> | |
| Select Plan | |
| </button> | |
| </div> | |
| <div class="bg-gray-50 px-6 py-3 border-t border-gray-200 text-sm text-gray-600"> | |
| ≈ 425.8 TRX daily revenue | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <button class="text-primary font-medium flex items-center mx-auto group"> | |
| <span>Compare all mining plans</span> | |
| <i class="fas fa-arrow-right ml-2 group-hover:translate-x-1 transition-transform"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials Section --> | |
| <section class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center max-w-2xl mx-auto mb-16"> | |
| <div class="inline-block bg-primary/10 text-primary rounded-full px-6 py-1.5 mb-5"> | |
| <span class="font-medium">Testimonials</span> | |
| </div> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4 font-heading">What Our <span class="gradient-text">Miners Say</span></h2> | |
| <p class="text-xl text-gray-600">Thousands of satisfied customers mining with our platform globally</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Testimonial 1 --> | |
| <div class="testimonial-card bg-white rounded-2xl p-8 shadow-md hover:shadow-xl transition-shadow duration-300"> | |
| <div class="flex items-start mb-6"> | |
| <div class="w-14 h-14 rounded-full overflow-hidden mr-4 border-2 border-primary/20"> | |
| <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Sarah M." class="w-full h-full object-cover"> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Sarah M.</h4> | |
| <div class="flex items-center"> | |
| <div class="flex text-yellow-400 mr-2"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| </div> | |
| <span class="text-sm text-gray-500">3 days ago</span> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 mb-4">"I was skeptical about cloud mining at first, but TRX Nova has completely changed my mind. The payouts are consistent and the platform is so easy to use. Already earned back my initial investment!"</p> | |
| <div class="flex items-center text-sm text-gray-500"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> | |
| <span>Verified Miner</span> | |
| </div> | |
| </div> | |
| <!-- Testimonial 2 --> | |
| <div class="testimonial-card bg-white rounded-2xl p-8 shadow-md hover:shadow-xl transition-shadow duration-300"> | |
| <div class="flex items-start mb-6"> | |
| <div class="w-14 h-14 rounded-full overflow-hidden mr-4 border-2 border-primary/20"> | |
| <img src="https://randomuser.me/api/portraits/men/45.jpg" alt="James K." class="w-full h-full object-cover"> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">James K.</h4> | |
| <div class="flex items-center"> | |
| <div class="flex text-yellow-400 mr-2"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star-half-alt"></i> | |
| </div> | |
| <span class="text-sm text-gray-500">1 week ago</span> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 mb-4">"The Professional plan is perfect for my needs. Earning about 6% more TRX than with my previous provider. The customer support team is extremely responsive too."</p> | |
| <div class="flex items-center text-sm text-gray-500"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> | |
| <span>Verified Miner</span> | |
| </div> | |
| </div> | |
| <!-- Testimonial 3 --> | |
| <div class="testimonial-card bg-white rounded-2xl p-8 shadow-md hover:shadow-xl transition-shadow duration-300"> | |
| <div class="flex items-start mb-6"> | |
| <div class="w-14 h-14 rounded-full overflow-hidden mr-4 border-2 border-primary/20"> | |
| <img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Elena V." class="w-full h-full object-cover"> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Elena V.</h4> | |
| <div class="flex items-center"> | |
| <div class="flex text-yellow-400 mr-2"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| </div> | |
| <span class="text-sm text-gray-500">2 weeks ago</span> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 mb-4">"As a complete beginner, I was nervous at first, but the platform is so intuitive! I started mining my first TRX within hours. The educational resources are also very helpful."</p> | |
| <div class="flex items-center text-sm text-gray-500"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> | |
| <span>Verified Miner</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="flex justify-center mt-12"> | |
| <button class="flex items-center space-x-2 bg-white text-primary px-6 py-3 rounded-lg font-medium border border-primary hover:bg-primary hover:text-white transition-colors shadow-sm hover:scale-105"> | |
| <span>View all testimonials</span> | |
| <i class="fas fa-arrow-right"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- FAQ Section --> | |
| <section id="faq" class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center max-w-3xl mx-auto mb-16"> | |
| <div class="inline-block bg-primary/10 text-primary rounded-full px-6 py-1.5 mb-5"> | |
| <span class="font-medium">Support</span> | |
| </div> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4 font-heading">Frequently Asked <span class="gradient-text">Questions</span></h2> | |
| <p class="text-xl text-gray-600">Find quick answers to common questions about our mining services</p> | |
| </div> | |
| <div class="max-w-4xl mx-auto"> | |
| <!-- FAQ Item 1 --> | |
| <div class="faq-item bg-gray-50 rounded-xl p-6 mb-4 cursor-pointer transition-all duration-300 hover:bg-gray-100"> | |
| <div class="flex justify-between items-center"> | |
| <h3 class="font-bold text-lg">How does TRX cloud mining work?</h3> | |
| <i class="fas fa-plus text-gray-400"></i> | |
| </div> | |
| <div class="answer hidden mt-4 text-gray-600"> | |
| Our cloud mining service allows you to mine TRON (TRX) by renting mining power from our state-of-the-art data centers. You purchase a mining contract, we handle all the hardware, electricity, and maintenance. Your mined TRX is automatically credited to your account daily. | |
| </div> | |
| </div> | |
| <!-- FAQ Item 2 --> | |
| <div class="faq-item bg-gray-50 rounded-xl p-6 mb-4 cursor-pointer transition-all duration-300 hover:bg-gray-100"> | |
| <div class="flex justify-between items-center"> | |
| <h3 class="font-bold text-lg">What are the risks of cloud mining?</h3> | |
| <i class="fas fa-plus text-gray-400"></i> | |
| </div> | |
| <div class="answer hidden mt-4 text-gray-600"> | |
| The main risks involve cryptocurrency price volatility and changes in mining difficulty. However, our fixed-rate contracts ensure predictable returns regardless of these fluctuations. We recommend starting with a smaller plan to test the platform before larger investments. | |
| </div> | |
| </div> | |
| <!-- FAQ Item 3 --> | |
| <div class="faq-item bg-gray-50 rounded-xl p-6 mb-4 cursor-pointer transition-all duration-300 hover:bg-gray-100"> | |
| <div class="flex justify-between items-center"> | |
| <h3 class="font-bold text-lg">How do I withdraw my mined TRX?</h3> | |
| <i class="fas fa-plus text-gray-400"></i> | |
| </div> | |
| <div class="answer hidden mt-4 text-gray-600"> | |
| You can withdraw your TRX anytime (minimum 5 TRX) directly to your TRON wallet. Simply go to the "Withdraw" section in your dashboard, enter your wallet address and amount, and confirm. Withdrawals are processed within 15 minutes during business hours. | |
| </div> | |
| </div> | |
| <!-- FAQ Item 4 --> | |
| <div class="faq-item bg-gray-50 rounded-xl p-6 mb-4 cursor-pointer transition-all duration-300 hover:bg-gray-100"> | |
| <div class="flex justify-between items-center"> | |
| <h3 class="font-bold text-lg">Can I upgrade my mining plan later?</h3> | |
| <i class="fas fa-plus text-gray-400"></i> | |
| </div> | |
| <div class="answer hidden mt-4 text-gray-600"> | |
| Yes! You can upgrade your mining plan at any time. The remaining days from your current plan will be prorated and applied to your new plan. Downgrades are possible but will take effect at the end of your current billing cycle. | |
| </div> | |
| </div> | |
| <!-- FAQ Item 5 --> | |
| <div class="faq-item bg-gray-50 rounded-xl p-6 mb-4 cursor-pointer transition-all duration-300 hover:bg-gray-100"> | |
| <div class="flex justify-between items-center"> | |
| <h3 class="font-bold text-lg">What payment methods do you accept?</h3> | |
| <i class="fas fa-plus text-gray-400"></i> | |
| </div> | |
| <div class="answer hidden mt-4 text-gray-600"> | |
| We accept credit/debit cards (Visa, Mastercard, Amex), bank transfers, and popular cryptocurrencies (Bitcoin, Ethereum, USDT). Cryptocurrency payments receive a 2% discount. All transactions are secured with SSL encryption. | |
| </div> | |
| </div> | |
| <!-- FAQ Item 6 --> | |
| <div class="faq-item bg-gray-50 rounded-xl p-6 mb-4 cursor-pointer transition-all duration-300 hover:bg-gray-100"> | |
| <div class="flex justify-between items-center"> | |
| <h3 class="font-bold text-lg">How is your service different from competitors?</h3> | |
| <i class="fas fa-plus text-gray-400"></i> | |
| </div> | |
| <div class="answer hidden mt-4 text-gray-600"> | |
| TRX Nova offers several advantages: 1) Higher mining efficiency using latest ASIC technology, 2) Lower fees (only 5% maintenance vs industry average 10%), 3) Instant mining activation, 4) Transparent operations with real-time monitoring, and 5) Award-winning 24/7 customer support. | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <div class="inline-flex items-center space-x-2 bg-gray-50 rounded-full px-6 py-3"> | |
| <i class="fas fa-comment-dots text-primary"></i> | |
| <span>Still have questions? <a href="#" class="font-medium text-primary hover:underline">Contact our support</a></span> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="gradient-bg text-white py-20 relative overflow-hidden"> | |
| <div class="absolute inset-0 bg-gradient-to-br from-primary/10 to-trx/10 opacity-20"></div> | |
| <div class="container mx-auto px-4 relative z-10"> | |
| <div class="max-w-4xl mx-auto text-center"> | |
| <div class="inline-block bg-white/20 backdrop-blur-md rounded-xl px-6 py-1.5 mb-6"> | |
| <span class="font-medium">Ready to Mine TRX?</span> | |
| </div> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6 font-heading">Start Your Mining Journey <span class="text-yellow-300">Today</span></h2> | |
| <p class="text-xl max-w-2xl mx-auto mb-10 opacity-90">Join thousands of satisfied customers earning passive income with our reliable cloud mining platform.</p> | |
| <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6"> | |
| <button class="flex items-center justify-center space-x-2 bg-white text-primary px-8 py-4 rounded-lg font-bold text-lg hover:bg-gray-100 transition-all duration-300 shadow-lg hover:shadow-xl hover:scale-105"> | |
| <span>Get Started Now</span> | |
| <i class="fas fa-rocket"></i> | |
| </button> | |
| <button class="flex items-center justify-center space-x-2 border-2 border-white text-white px-8 py-4 rounded-lg font-bold text-lg hover:bg-white hover:text-primary transition-all duration-300 shadow-lg hover:shadow-xl hover:scale-105"> | |
| <span>Talk to an Expert</span> | |
| <i class="fas fa-headset"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-dark text-gray-300 pt-16 pb-8"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid md:grid-cols-5 gap-12 mb-12"> | |
| <div class="md:col-span-2"> | |
| <div class="flex items-center space-x-3 mb-6 | |
| <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=Ddccvczsed/sasa" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |