|
|
<!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"> |
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
<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"> |
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
<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"> |
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
<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 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> |
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
|
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'); |
|
|
}); |
|
|
} |
|
|
|
|
|
|
|
|
const typewriterElement = document.querySelector('.typewriter'); |
|
|
if (typewriterElement) { |
|
|
setTimeout(() => { |
|
|
typewriterElement.style.animation = 'none'; |
|
|
typewriterElement.style.borderRight = 'none'; |
|
|
}, 3500); |
|
|
} |
|
|
|
|
|
|
|
|
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'); |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
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> |