File size: 44,247 Bytes
6fa32ba |
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 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>POPX - Digital Collectibles & Stablecoin Platform</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=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #f8f9fa;
}
.gradient-bg {
background: linear-gradient(135deg, #6e8efb, #a777e3);
}
.collectible-card {
transition: all 0.3s ease;
transform-style: preserve-3d;
}
.collectible-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.game-card {
background-size: cover;
background-position: center;
height: 300px;
position: relative;
overflow: hidden;
border-radius: 12px;
}
.game-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}
.blur-bg {
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.7);
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
.floating {
animation: float 6s ease-in-out infinite;
}
.typewriter {
overflow: hidden;
border-right: .15em solid #6e8efb;
white-space: nowrap;
margin: 0 auto;
letter-spacing: .15em;
animation:
typing 3.5s steps(40, end),
blink-caret .75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #6e8efb; }
}
</style>
</head>
<body class="min-h-screen">
<!-- Navigation -->
<nav class="bg-white shadow-sm sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<img class="h-8 w-auto" src="https://via.placeholder.com/150x50?text=POPX" alt="POPX Logo">
</div>
<div class="hidden sm:ml-6 sm:flex sm:space-x-8">
<a href="#" class="border-indigo-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Home</a>
<a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Marketplace</a>
<a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Games</a>
<a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Create IP</a>
<a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Wallet</a>
</div>
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center">
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium flex items-center">
<i class="fas fa-wallet mr-2"></i> Connect Wallet
</button>
<div class="ml-3 relative">
<div>
<button class="bg-white rounded-full flex text-sm focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" id="user-menu">
<span class="sr-only">Open user menu</span>
<img class="h-8 w-8 rounded-full" src="https://via.placeholder.com/32" alt="User avatar">
</button>
</div>
</div>
</div>
<div class="-mr-2 flex items-center sm:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="gradient-bg text-white">
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl md:text-6xl font-extrabold tracking-tight">
<span class="block typewriter">Monetize Your Creativity</span>
</h1>
<p class="mt-3 max-w-md mx-auto text-base md:text-xl md:mt-5 md:max-w-3xl">
The future of digital collectibles powered by USDT-B, a stablecoin anchored to US Treasury bonds
</p>
<div class="mt-10 flex justify-center">
<div class="rounded-md shadow">
<a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10">
Launch Creator Studio
</a>
</div>
<div class="ml-3 rounded-md shadow">
<a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-500 bg-opacity-60 hover:bg-opacity-70 md:py-4 md:text-lg md:px-10">
Explore Marketplace
</a>
</div>
</div>
</div>
<div class="mt-16 flex justify-center">
<div class="relative w-full max-w-4xl">
<div class="absolute -left-8 -top-8 w-32 h-32 bg-purple-300 rounded-full opacity-20"></div>
<div class="absolute -right-8 -bottom-8 w-32 h-32 bg-pink-300 rounded-full opacity-20"></div>
<div class="relative bg-white rounded-xl shadow-xl overflow-hidden blur-bg">
<div class="p-6">
<div class="flex justify-between items-center mb-4">
<div>
<span class="text-gray-500">Your USDT-B Balance</span>
<h3 class="text-3xl font-bold text-gray-900">1,245.78 <span class="text-indigo-600">USDT-B</span></h3>
</div>
<div class="flex space-x-2">
<button class="px-4 py-2 bg-indigo-100 text-indigo-700 rounded-lg text-sm font-medium">Deposit</button>
<button class="px-4 py-2 bg-indigo-600 text-white rounded-lg text-sm font-medium">Withdraw</button>
</div>
</div>
<div class="grid grid-cols-3 gap-4">
<div class="p-3 bg-gray-50 rounded-lg">
<div class="text-xs text-gray-500 mb-1">APY Earned</div>
<div class="font-medium">4.25%</div>
</div>
<div class="p-3 bg-gray-50 rounded-lg">
<div class="text-xs text-gray-500 mb-1">Backing Assets</div>
<div class="font-medium">US Treasury Bonds</div>
</div>
<div class="p-3 bg-gray-50 rounded-lg">
<div class="text-xs text-gray-500 mb-1">Daily Volume</div>
<div class="font-medium">$2.4M</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- How It Works -->
<div class="py-12 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">ECOSYSTEM</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
The Future of Digital Collectibles
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Combining personal IP creation with stable financial infrastructure
</p>
</div>
<div class="mt-10">
<div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-4">
<div class="collectible-card bg-white rounded-lg overflow-hidden shadow-md p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
<i class="fas fa-user-astronaut text-xl"></i>
</div>
<div class="mt-5">
<h3 class="text-lg font-medium text-gray-900">Create Your IP</h3>
<p class="mt-2 text-base text-gray-500">
Design and mint your unique digital characters with our creator tools.
</p>
</div>
</div>
<div class="collectible-card bg-white rounded-lg overflow-hidden shadow-md p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-500 text-white">
<i class="fas fa-coins text-xl"></i>
</div>
<div class="mt-5">
<h3 class="text-lg font-medium text-gray-900">Stablecoin Integration</h3>
<p class="mt-2 text-base text-gray-500">
Use USDT-B for all transactions, backed by the stability of US Treasury bonds.
</p>
</div>
</div>
<div class="collectible-card bg-white rounded-lg overflow-hidden shadow-md p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
<i class="fas fa-gamepad text-xl"></i>
</div>
<div class="mt-5">
<h3 class="text-lg font-medium text-gray-900">Game Integration</h3>
<p class="mt-2 text-base text-gray-500">
Use your collectibles in games and virtual worlds across our ecosystem.
</p>
</div>
</div>
<div class="collectible-card bg-white rounded-lg overflow-hidden shadow-md p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-pink-500 text-white">
<i class="fas fa-chart-line text-xl"></i>
</div>
<div class="mt-5">
<h3 class="text-lg font-medium text-gray-900">Secondary Market</h3>
<p class="mt-2 text-base text-gray-500">
Trade your digital assets on our secure marketplace with low fees.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Featured Collectibles -->
<div class="py-12 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center mb-12">
<h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">TRENDING</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Featured Collectibles
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Discover the most sought-after digital collectibles in our marketplace
</p>
</div>
<div class="grid grid-cols-1 gap-6 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4">
<!-- Collectible 1 -->
<div class="collectible-card bg-white rounded-lg overflow-hidden shadow-md">
<div class="relative pb-2/3 h-64">
<img class="absolute h-full w-full object-cover" src="https://via.placeholder.com/400x400?text=Collectible+1" alt="Collectible image">
<div class="absolute top-2 right-2 bg-white rounded-full p-1 shadow">
<i class="fas fa-heart text-pink-500"></i>
</div>
</div>
<div class="p-4">
<div class="flex items-center justify-between">
<h3 class="text-lg font-medium text-gray-900">Astro Bunny #4721</h3>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-100 text-green-800">
4.2% APY
</span>
</div>
<div class="mt-1 flex justify-between items-center">
<p class="text-sm text-gray-500">Creator: @spacebunny</p>
<div class="flex items-center">
<i class="fas fa-ethereum text-purple-500 mr-1"></i>
<span class="font-medium">125 USDT-B</span>
</div>
</div>
<div class="mt-4 flex justify-between">
<button class="px-3 py-1 bg-gray-100 text-gray-800 rounded text-sm font-medium">Details</button>
<button class="px-3 py-1 bg-indigo-600 text-white rounded text-sm font-medium">Buy Now</button>
</div>
</div>
</div>
<!-- Collectible 2 -->
<div class="collectible-card bg-white rounded-lg overflow-hidden shadow-md">
<div class="relative pb-2/3 h-64">
<img class="absolute h-full w-full object-cover" src="https://via.placeholder.com/400x400?text=Collectible+2" alt="Collectible image">
<div class="absolute top-2 right-2 bg-white rounded-full p-1 shadow">
<i class="fas fa-heart text-gray-400"></i>
</div>
</div>
<div class="p-4">
<div class="flex items-center justify-between">
<h3 class="text-lg font-medium text-gray-900">Cyber Samurai #892</h3>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-blue-100 text-blue-800">
Game Ready
</span>
</div>
<div class="mt-1 flex justify-between items-center">
<p class="text-sm text-gray-500">Creator: @neonkatana</p>
<div class="flex items-center">
<i class="fas fa-ethereum text-purple-500 mr-1"></i>
<span class="font-medium">89 USDT-B</span>
</div>
</div>
<div class="mt-4 flex justify-between">
<button class="px-3 py-1 bg-gray-100 text-gray-800 rounded text-sm font-medium">Details</button>
<button class="px-3 py-1 bg-indigo-600 text-white rounded text-sm font-medium">Buy Now</button>
</div>
</div>
</div>
<!-- Collectible 3 -->
<div class="collectible-card bg-white rounded-lg overflow-hidden shadow-md">
<div class="relative pb-2/3 h-64">
<img class="absolute h-full w-full object-cover" src="https://via.placeholder.com/400x400?text=Collectible+3" alt="Collectible image">
<div class="absolute top-2 right-2 bg-white rounded-full p-1 shadow">
<i class="fas fa-heart text-pink-500"></i>
</div>
</div>
<div class="p-4">
<div class="flex items-center justify-between">
<h3 class="text-lg font-medium text-gray-900">Mecha Panda #1567</h3>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-yellow-100 text-yellow-800">
Rare
</span>
</div>
<div class="mt-1 flex justify-between items-center">
<p class="text-sm text-gray-500">Creator: @techpanda</p>
<div class="flex items-center">
<i class="fas fa-ethereum text-purple-500 mr-1"></i>
<span class="font-medium">320 USDT-B</span>
</div>
</div>
<div class="mt-4 flex justify-between">
<button class="px-3 py-1 bg-gray-100 text-gray-800 rounded text-sm font-medium">Details</button>
<button class="px-3 py-1 bg-indigo-600 text-white rounded text-sm font-medium">Buy Now</button>
</div>
</div>
</div>
<!-- Collectible 4 -->
<div class="collectible-card bg-white rounded-lg overflow-hidden shadow-md">
<div class="relative pb-2/3 h-64">
<img class="absolute h-full w-full object-cover" src="https://via.placeholder.com/400x400?text=Collectible+4" alt="Collectible image">
<div class="absolute top-2 right-2 bg-white rounded-full p-1 shadow">
<i class="fas fa-heart text-gray-400"></i>
</div>
</div>
<div class="p-4">
<div class="flex items-center justify-between">
<h3 class="text-lg font-medium text-gray-900">Ghost Cat #2049</h3>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-purple-100 text-purple-800">
Legendary
</span>
</div>
<div class="mt-1 flex justify-between items-center">
<p class="text-sm text-gray-500">Creator: @phantomcat</p>
<div class="flex items-center">
<i class="fas fa-ethereum text-purple-500 mr-1"></i>
<span class="font-medium">750 USDT-B</span>
</div>
</div>
<div class="mt-4 flex justify-between">
<button class="px-3 py-1 bg-gray-100 text-gray-800 rounded text-sm font-medium">Details</button>
<button class="px-3 py-1 bg-indigo-600 text-white rounded text-sm font-medium">Buy Now</button>
</div>
</div>
</div>
</div>
<div class="mt-10 text-center">
<a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700">
View All Collectibles
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<!-- Game Integration Section -->
<div class="py-12 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center mb-12">
<h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">GAMING</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Play With Your Collectibles
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Your digital assets come to life in our immersive gaming experiences
</p>
</div>
<div class="grid grid-cols-1 gap-8 lg:grid-cols-2">
<!-- Game 1 -->
<div class="game-card" style="background-image: url('https://via.placeholder.com/800x600?text=Game+1')">
<div class="absolute bottom-0 left-0 right-0 p-6">
<h3 class="text-2xl font-bold text-white">Neon Battle Arena</h3>
<p class="text-gray-200 mt-1">Fight with your collectibles in this fast-paced action game</p>
<div class="mt-4 flex items-center">
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-100 text-green-800 mr-2">
4.8 ★
</span>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-blue-100 text-blue-800">
12K Players
</span>
<span class="ml-auto inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-purple-100 text-purple-800">
USDT-B Rewards
</span>
</div>
<button class="mt-4 w-full py-2 bg-indigo-600 hover:bg-indigo-700 text-white rounded-lg font-medium">
Play Now
</button>
</div>
</div>
<!-- Game 2 -->
<div class="game-card" style="background-image: url('https://via.placeholder.com/800x600?text=Game+2')">
<div class="absolute bottom-0 left-0 right-0 p-6">
<h3 class="text-2xl font-bold text-white">Panda World</h3>
<p class="text-gray-200 mt-1">Build and customize your virtual world with your collectibles</p>
<div class="mt-4 flex items-center">
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-100 text-green-800 mr-2">
4.6 ★
</span>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-blue-100 text-blue-800">
8.5K Players
</span>
<span class="ml-auto inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-purple-100 text-purple-800">
USDT-B Economy
</span>
</div>
<button class="mt-4 w-full py-2 bg-indigo-600 hover:bg-indigo-700 text-white rounded-lg font-medium">
Play Now
</button>
</div>
</div>
</div>
<div class="mt-10 grid grid-cols-2 gap-4 sm:grid-cols-3 lg:grid-cols-5">
<div class="flex flex-col items-center">
<div class="h-16 w-16 rounded-full bg-indigo-100 flex items-center justify-center">
<i class="fas fa-coins text-indigo-600 text-xl"></i>
</div>
<div class="mt-2 text-sm font-medium text-gray-900">Earn USDT-B</div>
</div>
<div class="flex flex-col items-center">
<div class="h-16 w-16 rounded-full bg-green-100 flex items-center justify-center">
<i class="fas fa-trophy text-green-600 text-xl"></i>
</div>
<div class="mt-2 text-sm font-medium text-gray-900">Win Prizes</div>
</div>
<div class="flex flex-col items-center">
<div class="h-16 w-16 rounded-full bg-purple-100 flex items-center justify-center">
<i class="fas fa-users text-purple-600 text-xl"></i>
</div>
<div class="mt-2 text-sm font-medium text-gray-900">Social Features</div>
</div>
<div class="flex flex-col items-center">
<div class="h-16 w-16 rounded-full bg-yellow-100 flex items-center justify-center">
<i class="fas fa-store text-yellow-600 text-xl"></i>
</div>
<div class="mt-2 text-sm font-medium text-gray-900">In-Game Shop</div>
</div>
<div class="flex flex-col items-center">
<div class="h-16 w-16 rounded-full bg-pink-100 flex items-center justify-center">
<i class="fas fa-gem text-pink-600 text-xl"></i>
</div>
<div class="mt-2 text-sm font-medium text-gray-900">Rare Items</div>
</div>
</div>
</div>
</div>
<!-- Creator Studio CTA -->
<div class="gradient-bg text-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
<div class="mb-8 lg:mb-0">
<h2 class="text-3xl font-extrabold tracking-tight sm:text-4xl">
Launch Your Own IP Empire
</h2>
<p class="mt-3 max-w-3xl text-lg">
Our creator studio provides all the tools you need to design, mint, and monetize your digital collectibles.
</p>
<div class="mt-8">
<div class="inline-flex rounded-md shadow">
<a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-gray-50">
Start Creating
<i class="fas fa-arrow-right ml-3"></i>
</a>
</div>
</div>
</div>
<div class="relative">
<div class="relative rounded-lg shadow-xl overflow-hidden floating">
<div class="absolute inset-0 bg-indigo-800 opacity-50"></div>
<div class="relative px-6 py-8 sm:p-10">
<div class="flex items-center">
<div class="flex-shrink-0 bg-white rounded-md p-2">
<i class="fas fa-palette text-indigo-600 text-2xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-white">Creator Benefits</h3>
</div>
</div>
<div class="mt-6">
<ul class="space-y-4">
<li class="flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-green-300"></i>
</div>
<p class="ml-3 text-base text-gray-200">
10% royalty on all secondary sales
</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-green-300"></i>
</div>
<p class="ml-3 text-base text-gray-200">
Instant USDT-B payouts
</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-green-300"></i>
</div>
<p class="ml-3 text-base text-gray-200">
Cross-game compatibility
</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-green-300"></i>
</div>
<p class="ml-3 text-base text-gray-200">
Marketing and promotion support
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Stablecoin Benefits -->
<div class="py-12 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center mb-12">
<h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">STABILITY</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Why USDT-B?
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
A stablecoin anchored to US Treasury bonds for secure digital transactions
</p>
</div>
<div class="mt-10">
<div class="grid grid-cols-1 gap-10 md:grid-cols-3">
<div class="bg-white p-6 rounded-lg shadow">
<div class="flex items-center mb-4">
<div class="flex-shrink-0 bg-indigo-100 p-2 rounded-md">
<i class="fas fa-shield-alt text-indigo-600 text-xl"></i>
</div>
<h3 class="ml-3 text-lg font-medium text-gray-900">Stable Value</h3>
</div>
<p class="mt-2 text-base text-gray-500">
Each USDT-B is backed by US Treasury bonds, maintaining a stable 1:1 peg to the US dollar while earning yield.
</p>
</div>
<div class="bg-white p-6 rounded-lg shadow">
<div class="flex items-center mb-4">
<div class="flex-shrink-0 bg-green-100 p-2 rounded-md">
<i class="fas fa-percentage text-green-600 text-xl"></i>
</div>
<h3 class="ml-3 text-lg font-medium text-gray-900">Earn Yield</h3>
</div>
<p class="mt-2 text-base text-gray-500">
Holders earn daily yield from the underlying Treasury bonds, currently at 4.25% APY paid in USDT-B.
</p>
</div>
<div class="bg-white p-6 rounded-lg shadow">
<div class="flex items-center mb-4">
<div class="flex-shrink-0 bg-purple-100 p-2 rounded-md">
<i class="fas fa-bolt text-purple-600 text-xl"></i>
</div>
<h3 class="ml-3 text-lg font-medium text-gray-900">Fast Transactions</h3>
</div>
<p class="mt-2 text-base text-gray-500">
Instant settlements with low fees across our ecosystem, perfect for in-game purchases and collectible trading.
</p>
</div>
</div>
</div>
<div class="mt-12 bg-white rounded-lg shadow-lg overflow-hidden">
<div class="px-6 py-8 sm:p-10">
<div class="text-center">
<h3 class="text-2xl font-bold text-gray-900">Ready to Get Started?</h3>
<p class="mt-2 text-lg text-gray-600">
Join thousands of creators and collectors in our growing ecosystem
</p>
<div class="mt-6 flex justify-center">
<div class="inline-flex rounded-md shadow">
<a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700">
Sign Up Free
</a>
</div>
<div class="ml-3 inline-flex">
<a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-indigo-700 bg-indigo-100 hover:bg-indigo-200">
Learn More
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-800">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Marketplace</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">All Collectibles</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Trending</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">New Releases</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Auctions</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Games</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">Neon Battle Arena</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Panda World</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Coming Soon</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Developer Portal</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Resources</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">Creator Studio</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Documentation</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">USDT-B</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Blog</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Company</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">About</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Careers</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Privacy</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Terms</a></li>
</ul>
</div>
</div>
<div class="mt-8 border-t border-gray-700 pt-8 md:flex md:items-center md:justify-between">
<div class="flex space-x-6 md:order-2">
<a href="#" class="text-gray-400 hover:text-gray-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-gray-300">
<i class="fab fa-discord"></i>
</a>
<a href="#" class="text-gray-400 hover:text-gray-300">
<i class="fab fa-telegram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-gray-300">
<i class="fab fa-medium"></i>
</a>
</div>
<p class="mt-8 text-base text-gray-400 md:mt-0 md:order-1">
© 2023 POPX Digital Collectibles Platform. All rights reserved.
</p>
</div>
</div>
</footer>
<!-- Mobile menu -->
<div class="hidden fixed inset-0 bg-black bg-opacity-50 z-50" id="mobile-menu">
<div class="absolute top-0 right-0 w-64 h-full bg-white shadow-lg">
<div class="p-4 flex justify-end">
<button id="close-menu" class="text-gray-500 hover:text-gray-700">
<i class="fas fa-times text-xl"></i>
</button>
</div>
<div class="px-4 pt-2 pb-3 space-y-1">
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">Home</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">Marketplace</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">Games</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">Create IP</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">Wallet</a>
<div class="pt-4">
<button class="w-full flex items-center justify-center px-4 py-2 border border-transparent rounded-md shadow-sm text-base font-medium text-white bg-indigo-600 hover:bg-indigo-700">
<i class="fas fa-wallet mr-2"></i> Connect Wallet
</button>
</div>
</div>
</div>
</div>
<script>
// Mobile menu toggle
document.addEventListener('DOMContentLoaded', function() {
const mobileMenuButton = document.querySelector('nav button');
const mobileMenu = document.getElementById('mobile-menu');
const closeMenuButton = document.getElementById('close-menu');
if (mobileMenuButton) {
mobileMenuButton.addEventListener('click', function() {
mobileMenu.classList.remove('hidden');
});
}
if (closeMenuButton) {
closeMenuButton.addEventListener('click', function() {
mobileMenu.classList.add('hidden');
});
}
// Typewriter effect
const typewriterElement = document.querySelector('.typewriter');
if (typewriterElement) {
setTimeout(() => {
typewriterElement.style.animation = 'none';
typewriterElement.style.borderRight = 'none';
}, 3500);
}
// Connect wallet button
const connectWalletButtons = document.querySelectorAll('button:contains("Connect Wallet")');
connectWalletButtons.forEach(button => {
button.addEventListener('click', function() {
alert('Wallet connection functionality would be implemented here with Web3.js or similar library');
});
});
// Buy now buttons
const buyNowButtons = document.querySelectorAll('button:contains("Buy Now")');
buyNowButtons.forEach(button => {
button.addEventListener('click', function() {
alert('This would initiate the purchase flow with USDT-B stablecoin');
});
});
});
</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://deepsite.hf.co/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://deepsite.hf.co" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://deepsite.hf.co?remix=echo3700/popx" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |