Spaces:
Running
Running
File size: 15,598 Bytes
dc80b21 1896173 |
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 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MoonDoge - The Next Meme Coin Sensation</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></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>
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
* {
font-family: 'Comic Neue', cursive;
}
.vanta-bg {
position: absolute;
width: 100%;
height: 100%;
z-index: -1;
}
.coin-spin {
animation: spin 5s linear infinite;
}
@keyframes spin {
0% { transform: rotateY(0deg); }
100% { transform: rotateY(360deg); }
}
.meme-gradient {
background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
}
@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
</style>
</head>
<body class="bg-gray-900 text-white">
<div id="vanta-bg" class="vanta-bg"></div>
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-black bg-opacity-70 backdrop-blur-sm">
<div class="container mx-auto px-6 py-4">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-2">
<img src="http://static.photos/gaming/200x200/42" alt="MoonDoge Logo" class="w-10 h-10 rounded-full coin-spin">
<span class="text-2xl font-bold text-yellow-400">MoonDoge</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#about" class="hover:text-yellow-400 transition-colors">About</a>
<a href="#tokenomics" class="hover:text-yellow-400 transition-colors">Tokenomics</a>
<a href="#roadmap" class="hover:text-yellow-400 transition-colors">Roadmap</a>
<a href="#buy" class="hover:text-yellow-400 transition-colors">How to Buy</a>
<a href="#community" class="hover:text-yellow-400 transition-colors">Community</a>
</div>
<button class="bg-yellow-400 text-black px-6 py-2 rounded-full font-bold hover:bg-yellow-300 transition-colors">
Buy Now
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="min-h-screen flex items-center justify-center relative overflow-hidden">
<div class="container mx-auto px-6 text-center z-10" data-aos="fade-up">
<div class="mb-8">
<img src="http://static.photos/gaming/320x240/42" alt="MoonDoge Coin" class="w-48 h-48 mx-auto rounded-full coin-spin pulse">
</div>
<h1 class="text-6xl md:text-8xl font-bold mb-6 meme-gradient bg-clip-text text-transparent">
TO THE MOON! 🚀
</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">
The meme coin that's actually going to make it to the moon. Join the revolution and become part of crypto history!
</p>
<div class="flex flex-col md:flex-row justify-center space-y-4 md:space-y-0 md:space-x-6">
<button class="bg-yellow-400 text-black px-8 py-4 rounded-full text-xl font-bold hover:bg-yellow-300 transition-colors">
Buy MoonDoge
</button>
<button class="border-2 border-yellow-400 text-yellow-400 px-8 py-4 rounded-full text-xl font-bold hover:bg-yellow-400 hover:text-black transition-colors">
Join Community
</button>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-black bg-opacity-50">
<div class="container mx-auto px-6">
<h2 class="text-4xl md:text-5xl font-bold text-center mb-16 text-yellow-400" data-aos="fade-up">What is MoonDoge?</h2>
<div class="grid md:grid-cols-2 gap-12 items-center">
<div data-aos="fade-right">
<img src="http://static.photos/technology/640x360/133" alt="MoonDoge Concept" class="rounded-3xl shadow-2xl">
</div>
<div data-aos="fade-left">
<p class="text-xl mb-6">
MoonDoge isn't just another meme coin - it's a movement! Born from the fusion of crypto enthusiasm and meme culture, we're here to prove that fun and profits can go hand in hand.
</p>
<p class="text-xl mb-6">
Our mission is simple: create the most engaging, community-driven cryptocurrency that actually delivers value to our holders while maintaining that classic meme coin charm.
</p>
<div class="grid grid-cols-2 gap-4">
<div class="bg-gray-800 p-4 rounded-xl text-center">
<i data-feather="users" class="w-8 h-8 mx-auto mb-2 text-yellow-400"></i>
<h3 class="font-bold">100K+ Holders</h3>
</div>
<div class="bg-gray-800 p-4 rounded-xl text-center">
<i data-feather="trending-up" class="w-8 h-8 mx-auto mb-2 text-yellow-400"></i>
<h3 class="font-bold">10M Market Cap</h3>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Tokenomics Section -->
<section id="tokenomics" class="py-20">
<div class="container mx-auto px-6">
<h2 class="text-4xl md:text-5xl font-bold text-center mb-16 text-yellow-400" data-aos="fade-up">Tokenomics</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-800 p-8 rounded-3xl text-center" data-aos="flip-left">
<div class="w-20 h-20 bg-yellow-400 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-feather="dollar-sign" class="w-10 h-10 text-black"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Total Supply</h3>
<p class="text-3xl font-bold text-yellow-400">1 Trillion</p>
<p class="text-gray-400">MOONDOGE tokens</p>
</div>
<div class="bg-gray-800 p-8 rounded-3xl text-center" data-aos="flip-left" data-aos-delay="200">
<div class="w-20 h-20 bg-yellow-400 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-feather="percent" class="w-10 h-10 text-black"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Tax</h3>
<p class="text-3xl font-bold text-yellow-400">4%</p>
<p class="text-gray-400">2% liquidity, 2% rewards</p>
</div>
<div class="bg-gray-800 p-8 rounded-3xl text-center" data-aos="flip-left" data-aos-delay="400">
<div class="w-20 h-20 bg-yellow-400 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-feather="lock" class="w-10 h-10 text-black"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Liquidity</h3>
<p class="text-3xl font-bold text-yellow-400">Locked</p>
<p class="text-gray-400">For 2 years</p>
</div>
</div>
</div>
</section>
<!-- Roadmap Section -->
<section id="roadmap" class="py-20 bg-black bg-opacity-50">
<div class="container mx-auto px-6">
<h2 class="text-4xl md:text-5xl font-bold text-center mb-16 text-yellow-400" data-aos="fade-up">Roadmap to the Moon</h2>
<div class="space-y-12">
<div class="grid md:grid-cols-2 gap-8 items-center" data-aos="fade-right">
<div class="text-right">
<h3 class="text-2xl font-bold text-yellow-400 mb-4">Phase 1: Launch</h3>
<p class="text-gray-300">Fair launch, community building, initial marketing push</p>
</div>
<div class="bg-yellow-400 w-8 h-8 rounded-full mx-auto relative">
<div class="absolute inset-0 bg-yellow-400 rounded-full animate-ping"></div>
</div>
</div>
<div class="grid md:grid-cols-2 gap-8 items-center" data-aos="fade-left">
<div class="bg-yellow-400 w-8 h-8 rounded-full mx-auto relative"></div>
<div>
<h3 class="text-2xl font-bold text-yellow-400 mb-4">Phase 2: Growth</h3>
<p class="text-gray-300">CEX listings, NFT collection, merch store</p>
</div>
</div>
<div class="grid md:grid-cols-2 gap-8 items-center" data-aos="fade-right">
<div class="text-right">
<h3 class="text-2xl font-bold text-yellow-400 mb-4">Phase 3: Moon</h3>
<p class="text-gray-300">Mainstream adoption, charity initiatives, ecosystem expansion</p>
</div>
<div class="bg-yellow-400 w-8 h-8 rounded-full mx-auto relative"></div>
</div>
</div>
</div>
</section>
<!-- How to Buy Section -->
<section id="buy" class="py-20">
<div class="container mx-auto px-6">
<h2 class="text-4xl md:text-5xl font-bold text-center mb-16 text-yellow-400" data-aos="fade-up">How to Buy MoonDoge</h2>
<div class="grid md:grid-cols-4 gap-6">
<div class="bg-gray-800 p-6 rounded-xl text-center" data-aos="zoom-in">
<div class="text-4xl mb-4">1</div>
<h3 class="text-xl font-bold mb-2">Get Wallet</h3>
<p class="text-gray-400">Download MetaMask or Trust Wallet</p>
</div>
<div class="bg-gray-800 p-6 rounded-xl text-center" data-aos="zoom-in" data-aos-delay="100">
<div class="text-4xl mb-4">2</div>
<h3 class="text-xl font-bold mb-2">Buy ETH</h3>
<p class="text-gray-400">Purchase Ethereum from any exchange</p>
</div>
<div class="bg-gray-800 p-6 rounded-xl text-center" data-aos="zoom-in" data-aos-delay="200">
<div class="text-4xl mb-4">3</div>
<h3 class="text-xl font-bold mb-2">Connect</h3>
<p class="text-gray-400">Connect to Uniswap/PancakeSwap</p>
</div>
<div class="bg-gray-800 p-6 rounded-xl text-center" data-aos="zoom-in" data-aos-delay="300">
<div class="text-4xl mb-4">4</div>
<h3 class="text-xl font-bold mb-2">Swap</h3>
<p class="text-gray-400">Swap ETH for MoonDoge tokens</p>
</div>
</div>
</div>
</section>
<!-- Community Section -->
<section id="community" class="py-20 bg-black bg-opacity-50">
<div class="container mx-auto px-6">
<h2 class="text-4xl md:text-5xl font-bold text-center mb-16 text-yellow-400" data-aos="fade-up">Join Our Community</h2>
<div class="grid md:grid-cols-4 gap-6">
<a href="#" class="bg-gray-800 p-8 rounded-3xl text-center hover:bg-yellow-400 hover:text-black transition-all" data-aos="flip-up">
<i data-feather="message-circle" class="w-12 h-12 mx-auto mb-4"></i>
<h3 class="text-xl font-bold">Telegram</h3>
</a>
<a href="#" class="bg-gray-800 p-8 rounded-3xl text-center hover:bg-yellow-400 hover:text-black transition-all" data-aos="flip-up" data-aos-delay="100">
<i data-feather="twitter" class="w-12 h-12 mx-auto mb-4"></i>
<h3 class="text-xl font-bold">Twitter</h3>
</a>
<a href="#" class="bg-gray-800 p-8 rounded-3xl text-center hover:bg-yellow-400 hover:text-black transition-all" data-aos="flip-up" data-aos-delay="200">
<i data-feather="instagram" class="w-12 h-12 mx-auto mb-4"></i>
<h3 class="text-xl font-bold">Instagram</h3>
</a>
<a href="#" class="bg-gray-800 p-8 rounded-3xl text-center hover:bg-yellow-400 hover:text-black transition-all" data-aos="flip-up" data-aos-delay="300">
<i data-feather="discord" class="w-12 h-12 mx-auto mb-4"></i>
<h3 class="text-xl font-bold">Discord</h3>
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 bg-black">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-2 mb-6 md:mb-0">
<img src="http://static.photos/gaming/200x200/42" alt="MoonDoge Logo" class="w-8 h-8 rounded-full">
<span class="text-xl font-bold text-yellow-400">MoonDoge</span>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-yellow-400"><i data-feather="twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-yellow-400"><i data-feather="message-circle"></i></a>
<a href="#" class="text-gray-400 hover:text-yellow-400"><i data-feather="instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-yellow-400"><i data-feather="discord"></i></a>
</div>
</div>
<div class="text-center text-gray-400 mt-8">
<p>© 2024 MoonDoge. This is a meme coin. Invest at your own risk. Not financial advice.</p>
</div>
</div>
</footer>
<script>
AOS.init();
feather.replace();
// Vanta.js background
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0xffeaa7,
backgroundColor: 0x111827,
size: 0.8
});
</script>
</body>
</html>
|