lynx-academy-token / index.html
Ricky760's picture
Add 3 files
479d1d4 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lynx Academy Token (LNX) - BSC Smart Contract</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>
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.contract-code {
background-color: #1e293b;
color: #f8fafc;
border-radius: 0.5rem;
font-family: 'Courier New', monospace;
position: relative;
}
.copy-btn {
position: absolute;
top: 0.5rem;
right: 0.5rem;
background-color: #334155;
color: white;
border: none;
border-radius: 0.25rem;
padding: 0.25rem 0.5rem;
cursor: pointer;
transition: all 0.2s;
}
.copy-btn:hover {
background-color: #475569;
}
.token-card {
transition: transform 0.3s, box-shadow 0.3s;
}
.token-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
}
}
</style>
</head>
<body class="min-h-screen bg-gray-50">
<header class="gradient-bg text-white">
<div class="container mx-auto px-4 py-12">
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="mb-8 md:mb-0">
<h1 class="text-4xl font-bold mb-2">Lynx Academy Token</h1>
<p class="text-xl opacity-90">Empowering education through blockchain technology</p>
<div class="mt-6 flex items-center space-x-4">
<div class="bg-white text-indigo-700 px-4 py-2 rounded-full font-semibold flex items-center">
<i class="fab fa-ethereum mr-2"></i>
<span>BSC Network</span>
</div>
<div class="bg-white text-indigo-700 px-4 py-2 rounded-full font-semibold flex items-center">
<i class="fas fa-coins mr-2"></i>
<span>LNX</span>
</div>
</div>
</div>
<div class="relative">
<div class="w-32 h-32 md:w-40 md:h-40 bg-white rounded-full flex items-center justify-center shadow-xl pulse">
<div class="text-indigo-600 text-5xl md:text-6xl font-bold">LNX</div>
</div>
</div>
</div>
</div>
</header>
<main class="container mx-auto px-4 py-12">
<section class="mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-8 text-center">Token Information</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="token-card bg-white p-6 rounded-xl shadow-md border border-gray-100">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 p-3 rounded-full mr-4">
<i class="fas fa-coins text-indigo-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Total Supply</h3>
</div>
<p class="text-gray-600">10,000,000 LNX</p>
</div>
<div class="token-card bg-white p-6 rounded-xl shadow-md border border-gray-100">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 p-3 rounded-full mr-4">
<i class="fas fa-sync-alt text-indigo-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Circulating Supply</h3>
</div>
<p class="text-gray-600">10,000,000 LNX</p>
</div>
<div class="token-card bg-white p-6 rounded-xl shadow-md border border-gray-100">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 p-3 rounded-full mr-4">
<i class="fas fa-lock text-indigo-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Token Type</h3>
</div>
<p class="text-gray-600">Fixed Supply (Non-mintable)</p>
</div>
</div>
</section>
<section class="mb-16">
<h2 class="text-3xl font-bold text-gray-
</html>