Spaces:
Running
Running
File size: 33,280 Bytes
b22b011 |
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 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MEMEVERSE | The Next 20x SOL MemeCoin</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>
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Rubik+Mono+One&display=swap');
body {
background-color: #0f0e17;
font-family: 'Press Start 2P', cursive;
color: #fff;
overflow-x: hidden;
}
.pixel-art {
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
}
.glow {
animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
from {
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #00f7ff, 0 0 20px #00f7ff;
}
to {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #00f7ff, 0 0 40px #00f7ff;
}
}
.coin-spin {
animation: spin 4s linear infinite;
}
@keyframes spin {
0% { transform: rotateY(0deg); }
100% { transform: rotateY(360deg); }
}
.pixel-border {
border: 4px solid #fff;
box-shadow: 8px 8px 0 rgba(255,255,255,0.3);
position: relative;
}
.pixel-border::before {
content: "";
position: absolute;
top: -8px;
left: -8px;
right: -8px;
bottom: -8px;
border: 4px solid #ff00e6;
z-index: -1;
}
.btn-pixel {
position: relative;
display: inline-block;
padding: 15px 30px;
color: white;
text-transform: uppercase;
letter-spacing: 4px;
text-decoration: none;
font-size: 12px;
overflow: hidden;
transition: 0.2s;
border: none;
background: #ff00e6;
box-shadow: 5px 5px 0px #fff;
}
.btn-pixel:hover {
box-shadow: none;
transform: translate(5px, 5px);
transition: all 0.2s ease;
cursor: pointer;
}
.meme-char {
transition: all 0.3s ease;
}
.meme-char:hover {
transform: scale(1.1) rotate(5deg);
filter: drop-shadow(0 0 10px #ff00e6);
}
.roadmap-item {
position: relative;
padding-left: 40px;
margin-bottom: 30px;
}
.roadmap-item::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 30px;
height: 30px;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff00e6"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>');
background-size: contain;
}
.countdown-box {
background: rgba(255,255,255,0.1);
border: 3px solid #fff;
padding: 10px;
margin: 0 5px;
min-width: 80px;
}
.tokenomics-item {
position: relative;
padding-left: 30px;
margin-bottom: 15px;
}
.tokenomics-item::before {
content: "■";
position: absolute;
left: 0;
color: #ff00e6;
font-size: 20px;
}
</style>
</head>
<body class="min-h-screen">
<!-- Header -->
<header class="py-6 px-4 md:px-10 lg:px-20 relative overflow-hidden">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center">
<img src="https://i.imgur.com/JQ9w7X5.png" alt="MEMEVERSE Logo" class="h-16 w-16 pixel-art">
<h1 class="text-2xl md:text-3xl ml-4 glow">MEMEVERSE</h1>
</div>
<nav class="hidden md:block">
<ul class="flex space-x-8">
<li><a href="#about" class="hover:text-pink-400 transition">ABOUT</a></li>
<li><a href="#tokenomics" class="hover:text-pink-400 transition">TOKENOMICS</a></li>
<li><a href="#roadmap" class="hover:text-pink-400 transition">ROADMAP</a></li>
<li><a href="#buy" class="hover:text-pink-400 transition">HOW TO BUY</a></li>
</ul>
</nav>
<button class="md:hidden text-2xl">
<i class="fas fa-bars"></i>
</button>
</div>
<!-- Floating pixel characters -->
<img src="https://i.imgur.com/8QZqX9k.png" alt="Pixel character" class="absolute top-20 left-10 w-24 h-24 pixel-art meme-char" style="transform: rotate(-15deg);">
<img src="https://i.imgur.com/5t6sL9p.png" alt="Pixel character" class="absolute top-1/4 right-20 w-20 h-20 pixel-art meme-char" style="transform: rotate(10deg);">
<img src="https://i.imgur.com/3vQx7Yj.png" alt="Pixel character" class="absolute bottom-10 left-1/4 w-16 h-16 pixel-art meme-char" style="transform: rotate(-5deg);">
</header>
<!-- Hero Section -->
<section class="py-20 px-4 md:px-10 lg:px-20 relative overflow-hidden">
<div class="container mx-auto flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 z-10">
<h2 class="text-3xl md:text-5xl lg:text-6xl mb-6 leading-tight">
THE NEXT <span class="text-pink-400">20x</span> MEME COIN ON <span class="text-green-400">SOLANA</span>
</h2>
<p class="text-lg mb-8 opacity-80">
Join the MEMEVERSE revolution! Our pixel-powered metaverse is taking over Solana.
Early investors become legends. Don't miss your chance to 20x your bag!
</p>
<div class="flex flex-col sm:flex-row gap-4">
<button class="btn-pixel">
BUY NOW <i class="fas fa-rocket ml-2"></i>
</button>
<button class="btn-pixel bg-blue-500">
JOIN TG <i class="fab fa-telegram ml-2"></i>
</button>
</div>
<div class="mt-10">
<h3 class="text-xl mb-4">PRESALE ENDS IN:</h3>
<div class="flex">
<div class="countdown-box text-center">
<div class="text-3xl font-bold" id="days">03</div>
<div class="text-sm">DAYS</div>
</div>
<div class="countdown-box text-center">
<div class="text-3xl font-bold" id="hours">12</div>
<div class="text-sm">HOURS</div>
</div>
<div class="countdown-box text-center">
<div class="text-3xl font-bold" id="minutes">45</div>
<div class="text-sm">MIN</div>
</div>
<div class="countdown-box text-center">
<div class="text-3xl font-bold" id="seconds">30</div>
<div class="text-sm">SEC</div>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 flex justify-center z-10">
<div class="relative">
<img src="https://i.imgur.com/JQ9w7X5.png" alt="MEMEVERSE Coin" class="w-64 h-64 pixel-art coin-spin">
<div class="absolute -bottom-10 -right-10 bg-pink-500 text-white px-4 py-2 rotate-6 pixel-border">
<span class="text-xl">20x POTENTIAL!</span>
</div>
</div>
</div>
</div>
<!-- Animated background elements -->
<div class="absolute top-0 left-0 w-full h-full overflow-hidden z-0">
<div class="absolute top-20 right-20 w-40 h-40 border-4 border-white opacity-10"></div>
<div class="absolute bottom-40 left-40 w-20 h-20 border-4 border-pink-500 opacity-10"></div>
<div class="absolute top-1/3 left-1/4 w-32 h-32 border-4 border-blue-400 opacity-10"></div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 px-4 md:px-10 lg:px-20 bg-gray-900 relative overflow-hidden">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl text-center mb-16">
WELCOME TO <span class="text-pink-400">MEMEVERSE</span>
</h2>
<div class="flex flex-col lg:flex-row items-center gap-12">
<div class="lg:w-1/2">
<div class="p-8 pixel-border bg-gray-800">
<h3 class="text-2xl mb-6 text-pink-400">WHAT IS MEMEVERSE?</h3>
<p class="mb-4">
MEMEVERSE is the first pixel-art metaverse meme coin on Solana that combines the nostalgia of 2D gaming with the explosive potential of crypto.
</p>
<p class="mb-4">
We're building more than just a token - we're creating a universe where holders become citizens of a vibrant, ever-expanding pixel world.
</p>
<p>
Early investors don't just get rich - they become legends in the MEMEVERSE lore!
</p>
</div>
</div>
<div class="lg:w-1/2 grid grid-cols-2 gap-4">
<div class="p-4 pixel-border bg-gray-800 flex flex-col items-center">
<img src="https://i.imgur.com/8QZqX9k.png" alt="Pixel character" class="w-24 h-24 pixel-art mb-4">
<h4 class="text-lg mb-2">PIXEL POWER</h4>
<p class="text-sm text-center">Our 2D metaverse brings back classic gaming vibes with a crypto twist</p>
</div>
<div class="p-4 pixel-border bg-gray-800 flex flex-col items-center">
<img src="https://i.imgur.com/5t6sL9p.png" alt="Pixel character" class="w-24 h-24 pixel-art mb-4">
<h4 class="text-lg mb-2">20X POTENTIAL</h4>
<p class="text-sm text-center">Carefully designed tokenomics to maximize growth potential</p>
</div>
<div class="p-4 pixel-border bg-gray-800 flex flex-col items-center">
<img src="https://i.imgur.com/3vQx7Yj.png" alt="Pixel character" class="w-24 h-24 pixel-art mb-4">
<h4 class="text-lg mb-2">COMMUNITY FIRST</h4>
<p class="text-sm text-center">Your voice shapes the MEMEVERSE future through DAO voting</p>
</div>
<div class="p-4 pixel-border bg-gray-800 flex flex-col items-center">
<img src="https://i.imgur.com/JQ9w7X5.png" alt="MEMEVERSE Coin" class="w-24 h-24 pixel-art mb-4">
<h4 class="text-lg mb-2">SOLANA SPEED</h4>
<p class="text-sm text-center">Lightning-fast transactions with near-zero fees</p>
</div>
</div>
</div>
</div>
</section>
<!-- Tokenomics Section -->
<section id="tokenomics" class="py-20 px-4 md:px-10 lg:px-20 relative overflow-hidden">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl text-center mb-16">
<span class="text-pink-400">TOKENOMICS</span> THAT MAKE SENSE
</h2>
<div class="flex flex-col lg:flex-row gap-12 items-center">
<div class="lg:w-1/2">
<div class="p-8 pixel-border bg-gray-900">
<h3 class="text-2xl mb-6 text-pink-400">TOKEN DISTRIBUTION</h3>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>Presale (40%)</span>
<span>40%</span>
</div>
<div class="w-full bg-gray-700 h-4">
<div class="bg-pink-500 h-4" style="width: 40%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>Liquidity (30%)</span>
<span>30%</span>
</div>
<div class="w-full bg-gray-700 h-4">
<div class="bg-blue-500 h-4" style="width: 30%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>Marketing (15%)</span>
<span>15%</span>
</div>
<div class="w-full bg-gray-700 h-4">
<div class="bg-green-500 h-4" style="width: 15%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>Team (10%)</span>
<span>10%</span>
</div>
<div class="w-full bg-gray-700 h-4">
<div class="bg-yellow-500 h-4" style="width: 10%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>Community Rewards (5%)</span>
<span>5%</span>
</div>
<div class="w-full bg-gray-700 h-4">
<div class="bg-purple-500 h-4" style="width: 5%"></div>
</div>
</div>
</div>
</div>
<div class="lg:w-1/2">
<div class="p-8 pixel-border bg-gray-900">
<h3 class="text-2xl mb-6 text-pink-400">WHY INVEST?</h3>
<div class="tokenomics-item">
<h4 class="text-lg mb-2">LOW TAX, HIGH REWARDS</h4>
<p>Only 5% tax (3% liquidity, 2% marketing) ensures smooth trading while funding growth</p>
</div>
<div class="tokenomics-item">
<h4 class="text-lg mb-2">LOCKED LIQUIDITY</h4>
<p>Initial liquidity locked for 6 months, with plans to extend based on community vote</p>
</div>
<div class="tokenomics-item">
<h4 class="text-lg mb-2">CONTRACT RENOUNCED</h4>
<p>Full transparency with renounced contract after launch</p>
</div>
<div class="tokenomics-item">
<h4 class="text-lg mb-2">COMMUNITY DRIVEN</h4>
<p>Major decisions made by token holders through snapshot voting</p>
</div>
<div class="tokenomics-item">
<h4 class="text-lg mb-2">DEFLATIONARY MECHANICS</h4>
<p>Regular token burns from transaction fees increase scarcity over time</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Roadmap Section -->
<section id="roadmap" class="py-20 px-4 md:px-10 lg:px-20 bg-gray-900 relative overflow-hidden">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl text-center mb-16">
OUR <span class="text-pink-400">PIXEL-POWERED</span> JOURNEY
</h2>
<div class="relative">
<!-- Timeline line -->
<div class="hidden md:block absolute left-1/2 top-0 h-full w-1 bg-pink-500 transform -translate-x-1/2"></div>
<div class="space-y-16">
<!-- Phase 1 -->
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 md:pr-16 mb-8 md:mb-0 text-right">
<div class="p-6 pixel-border bg-gray-800">
<h3 class="text-2xl text-pink-400 mb-4">PHASE 1: LAUNCH</h3>
<ul class="space-y-2">
<li class="roadmap-item">Token creation & smart contract audit</li>
<li class="roadmap-item">Presale on PinkSale</li>
<li class="roadmap-item">DEX listing (Raydium)</li>
<li class="roadmap-item">Community building</li>
<li class="roadmap-item">First 1000 holders</li>
</ul>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<div class="w-40 h-40 bg-pink-500 rounded-full flex items-center justify-center pixel-border">
<span class="text-xl">Q1 2023</span>
</div>
<img src="https://i.imgur.com/8QZqX9k.png" alt="Pixel character" class="absolute -top-10 -right-10 w-20 h-20 pixel-art">
</div>
</div>
</div>
<!-- Phase 2 -->
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 order-1 md:pl-16 mb-8 md:mb-0">
<div class="p-6 pixel-border bg-gray-800">
<h3 class="text-2xl text-pink-400 mb-4">PHASE 2: GROWTH</h3>
<ul class="space-y-2">
<li class="roadmap-item">CEX listings (Gate.io, MEXC)</li>
<li class="roadmap-item">Marketing push (influencers, AMAs)</li>
<li class="roadmap-item">First MEMEVERSE mini-game release</li>
<li class="roadmap-item">10,000+ holders</li>
<li class="roadmap-item">Merch store launch</li>
</ul>
</div>
</div>
<div class="md:w-1/2 order-0 md:order-2 flex justify-center">
<div class="relative">
<div class="w-40 h-40 bg-blue-500 rounded-full flex items-center justify-center pixel-border">
<span class="text-xl">Q2 2023</span>
</div>
<img src="https://i.imgur.com/5t6sL9p.png" alt="Pixel character" class="absolute -bottom-10 -left-10 w-20 h-20 pixel-art">
</div>
</div>
</div>
<!-- Phase 3 -->
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 md:pr-16 mb-8 md:mb-0 text-right">
<div class="p-6 pixel-border bg-gray-800">
<h3 class="text-2xl text-pink-400 mb-4">PHASE 3: EXPANSION</h3>
<ul class="space-y-2">
<li class="roadmap-item">MEMEVERSE metaverse alpha release</li>
<li class="roadmap-item">NFT character collection</li>
<li class="roadmap-item">Top 10 CEX listing</li>
<li class="roadmap-item">50,000+ holders</li>
<li class="roadmap-item">DAO governance implementation</li>
</ul>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<div class="w-40 h-40 bg-green-500 rounded-full flex items-center justify-center pixel-border">
<span class="text-xl">Q3 2023</span>
</div>
<img src="https://i.imgur.com/3vQx7Yj.png" alt="Pixel character" class="absolute -top-10 -right-10 w-20 h-20 pixel-art">
</div>
</div>
</div>
<!-- Phase 4 -->
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 order-1 md:pl-16 mb-8 md:mb-0">
<div class="p-6 pixel-border bg-gray-800">
<h3 class="text-2xl text-pink-400 mb-4">PHASE 4: DOMINATION</h3>
<ul class="space-y-2">
<li class="roadmap-item">Full MEMEVERSE game ecosystem</li>
<li class="roadmap-item">Play-to-earn mechanics</li>
<li class="roadmap-item">Binance/Kucoin listing</li>
<li class="roadmap-item">100,000+ holders</li>
<li class="roadmap-item">Top 100 market cap</li>
</ul>
</div>
</div>
<div class="md:w-1/2 order-0 md:order-2 flex justify-center">
<div class="relative">
<div class="w-40 h-40 bg-yellow-500 rounded-full flex items-center justify-center pixel-border">
<span class="text-xl">Q4 2023</span>
</div>
<img src="https://i.imgur.com/JQ9w7X5.png" alt="MEMEVERSE Coin" class="absolute -bottom-10 -left-10 w-20 h-20 pixel-art">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- How to Buy Section -->
<section id="buy" class="py-20 px-4 md:px-10 lg:px-20 relative overflow-hidden">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl text-center mb-16">
HOW TO <span class="text-pink-400">BUY</span> $MEME
</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Step 1 -->
<div class="p-6 pixel-border bg-gray-900 relative">
<div class="absolute -top-6 -left-6 w-12 h-12 bg-pink-500 rounded-full flex items-center justify-center">
<span class="text-xl">1</span>
</div>
<h3 class="text-2xl mb-4 text-pink-400">GET SOLANA</h3>
<p class="mb-4">Buy SOL on any major exchange (Binance, Coinbase, Kraken) or use MoonPay/Ramp directly in Phantom wallet</p>
<div class="flex justify-center mt-6">
<img src="https://i.imgur.com/vhS4QZQ.png" alt="SOL Logo" class="w-16 h-16 pixel-art">
</div>
</div>
<!-- Step 2 -->
<div class="p-6 pixel-border bg-gray-900 relative">
<div class="absolute -top-6 -left-6 w-12 h-12 bg-blue-500 rounded-full flex items-center justify-center">
<span class="text-xl">2</span>
</div>
<h3 class="text-2xl mb-4 text-pink-400">SET UP WALLET</h3>
<p class="mb-4">Download Phantom wallet (Chrome extension or mobile app). Send SOL to your wallet address</p>
<div class="flex justify-center mt-6">
<img src="https://i.imgur.com/7mQ5LqQ.png" alt="Phantom Logo" class="w-16 h-16 pixel-art">
</div>
</div>
<!-- Step 3 -->
<div class="p-6 pixel-border bg-gray-900 relative">
<div class="absolute -top-6 -left-6 w-12 h-12 bg-green-500 rounded-full flex items-center justify-center">
<span class="text-xl">3</span>
</div>
<h3 class="text-2xl mb-4 text-pink-400">BUY $MEME</h3>
<p class="mb-4">During presale: Connect wallet to PinkSale. After launch: Swap SOL for $MEME on Raydium or Jupiter</p>
<div class="flex justify-center mt-6">
<img src="https://i.imgur.com/JQ9w7X5.png" alt="MEMEVERSE Coin" class="w-16 h-16 pixel-art">
</div>
</div>
</div>
<div class="mt-16 text-center">
<h3 class="text-2xl mb-6">CONTRACT ADDRESS:</h3>
<div class="bg-gray-900 p-4 rounded-lg inline-block max-w-full overflow-x-auto">
<code class="text-sm md:text-base">7x8hZ... (coming soon)</code>
</div>
<p class="mt-4 text-sm opacity-70">Always verify contract address from official channels before buying</p>
</div>
</div>
</section>
<!-- Community Section -->
<section class="py-20 px-4 md:px-10 lg:px-20 bg-gray-900 relative overflow-hidden">
<div class="container mx-auto text-center">
<h2 class="text-3xl md:text-4xl mb-8">
JOIN THE <span class="text-pink-400">MEMEVERSE</span> COMMUNITY
</h2>
<p class="text-xl mb-12 max-w-3xl mx-auto">
Our community is the heart of MEMEVERSE. Join us to get the latest updates, memes, and alpha!
</p>
<div class="flex flex-wrap justify-center gap-6">
<a href="#" class="p-4 pixel-border bg-gray-800 hover:bg-pink-500 transition flex items-center">
<i class="fab fa-telegram text-3xl mr-3"></i>
<span>TELEGRAM</span>
</a>
<a href="#" class="p-4 pixel-border bg-gray-800 hover:bg-blue-400 transition flex items-center">
<i class="fab fa-twitter text-3xl mr-3"></i>
<span>TWITTER</span>
</a>
<a href="#" class="p-4 pixel-border bg-gray-800 hover:bg-purple-500 transition flex items-center">
<i class="fab fa-discord text-3xl mr-3"></i>
<span>DISCORD</span>
</a>
<a href="#" class="p-4 pixel-border bg-gray-800 hover:bg-red-500 transition flex items-center">
<i class="fab fa-youtube text-3xl mr-3"></i>
<span>YOUTUBE</span>
</a>
</div>
<div class="mt-16">
<h3 class="text-2xl mb-6">MEME OF THE DAY</h3>
<div class="p-6 pixel-border bg-gray-800 inline-block max-w-full">
<img src="https://i.imgur.com/LkZQq3G.png" alt="Meme" class="w-64 h-64 pixel-art">
<p class="mt-4">"When you buy $MEME at presale and check price after launch"</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-10 px-4 md:px-10 lg:px-20 bg-black text-center">
<div class="container mx-auto">
<div class="flex justify-center mb-6">
<img src="https://i.imgur.com/JQ9w7X5.png" alt="MEMEVERSE Logo" class="h-16 w-16 pixel-art">
</div>
<p class="mb-6">
MEMEVERSE is a community-driven meme token on Solana. Not financial advice. Do your own research.
</p>
<div class="flex justify-center space-x-6 mb-6">
<a href="#" class="text-xl hover:text-pink-400"><i class="fab fa-telegram"></i></a>
<a href="#" class="text-xl hover:text-pink-400"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-xl hover:text-pink-400"><i class="fab fa-discord"></i></a>
<a href="#" class="text-xl hover:text-pink-400"><i class="fab fa-medium"></i></a>
</div>
<p class="text-sm opacity-70">
© 2023 MEMEVERSE. All rights reserved. Not affiliated with Minecraft or Roblox.
</p>
</div>
</footer>
<script>
// Countdown timer
function updateCountdown() {
const now = new Date();
const endDate = new Date();
endDate.setDate(now.getDate() + 3); // 3 days from now
const diff = endDate - now;
const days = Math.floor(diff / (1000 * 60 * 60 * 24));
const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((diff % (1000 * 60)) / 1000);
document.getElementById('days').textContent = days.toString().padStart(2, '0');
document.getElementById('hours').textContent = hours.toString().padStart(2, '0');
document.getElementById('minutes').textContent = minutes.toString().padStart(2, '0');
document.getElementById('seconds').textContent = seconds.toString().padStart(2, '0');
}
setInterval(updateCountdown, 1000);
updateCountdown();
// Animate meme characters on scroll
const memeChars = document.querySelectorAll('.meme-char');
function checkScroll() {
memeChars.forEach(char => {
const charPosition = char.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.3;
if (charPosition < screenPosition) {
char.style.opacity = '1';
char.style.transform = 'translateY(0)';
}
});
}
window.addEventListener('scroll', checkScroll);
checkScroll();
// Smooth scrolling for navigation
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</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=chiminaca/u-memecoin" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |