Spaces:
Running
Running
File size: 31,941 Bytes
fb819b4 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VELNEXOR - Web3 Solutions & Blockchain Academy</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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
vlnxPrimary: '#6d28d9',
vlnxSecondary: '#8b5cf6',
vlnxDark: '#1e1b4b',
vlnxLight: '#e9d5ff',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f8fafc;
}
.gradient-bg {
background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
}
.token-card {
perspective: 1000px;
}
.token-card-inner {
transition: transform 0.6s;
transform-style: preserve-3d;
}
.token-card:hover .token-card-inner {
transform: rotateY(180deg);
}
.token-card-front, .token-card-back {
backface-visibility: hidden;
}
.token-card-back {
transform: rotateY(180deg);
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.animated-wave {
animation: wave 8s ease-in-out infinite;
}
@keyframes wave {
0%, 100% {
transform: rotate(0deg);
}
25% {
transform: rotate(5deg);
}
75% {
transform: rotate(-5deg);
}
}
.typing-demo {
width: 22ch;
animation: typing 2s steps(22), blink .5s step-end infinite alternate;
white-space: nowrap;
overflow: hidden;
border-right: 3px solid;
font-family: monospace;
}
@keyframes typing {
from {
width: 0
}
}
@keyframes blink {
50% {
border-color: transparent
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="bg-white shadow-lg 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">
<i class="fas fa-cube text-vlnxPrimary text-2xl mr-2"></i>
<span class="text-xl font-bold text-vlnxDark">VELNEXOR</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#services" class="text-gray-700 hover:text-vlnxPrimary px-3 py-2 text-sm font-medium">Services</a>
<a href="#token" class="text-gray-700 hover:text-vlnxPrimary px-3 py-2 text-sm font-medium">VLNX Token</a>
<a href="#blockchain" class="text-gray-700 hover:text-vlnxPrimary px-3 py-2 text-sm font-medium">Blockchain</a>
<a href="#academy" class="text-gray-700 hover:text-vlnxPrimary px-3 py-2 text-sm font-medium">Academy</a>
<a href="#about" class="text-gray-700 hover:text-vlnxPrimary px-3 py-2 text-sm font-medium">About</a>
</div>
<div class="flex items-center">
<button class="bg-vlnxPrimary text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-vlnxSecondary transition duration-300">
Connect Wallet
</button>
<button class="md:hidden ml-4 inline-flex items-center justify-center p-2 rounded-md text-gray-700">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">
The Future of <span class="typing-demo">Web3 Solutions</span>
</h1>
<p class="text-xl mb-8 opacity-90">
VELNEXOR provides comprehensive Web3 services, blockchain solutions, and education to power the decentralized future.
</p>
<div class="flex space-x-4">
<button class="bg-white text-vlnxPrimary px-6 py-3 rounded-md text-lg font-semibold hover:bg-opacity-90 transition duration-300">
Explore Services
</button>
<button class="border-2 border-white text-white px-6 py-3 rounded-md text-lg font-semibold hover:bg-white hover:bg-opacity-10 transition duration-300">
Learn More
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center animated-wave">
<img src="https://images.unsplash.com/photo-1639762681057-408e52192e55?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2232&q=80" alt="Blockchain Technology" class="rounded-xl shadow-2xl w-full max-w-lg">
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-vlnxDark mb-4">Our Web3 Services</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Comprehensive solutions to build, grow, and secure your Web3 projects
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="service-card bg-white rounded-xl shadow-lg p-8 transition duration-300">
<div class="text-vlnxPrimary mb-4">
<i class="fas fa-code text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-vlnxDark mb-3">Smart Contract Development</h3>
<p class="text-gray-600">
Secure, audited smart contracts for DeFi, NFTs, DAOs, and more. We build on Ethereum, Solana, Polygon, and other leading blockchains.
</p>
</div>
<!-- Service 2 -->
<div class="service-card bg-white rounded-xl shadow-lg p-8 transition duration-300">
<div class="text-vlnxPrimary mb-4">
<i class="fas fa-wallet text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-vlnxDark mb-3">DeFi Solutions</h3>
<p class="text-gray-600">
Custom decentralized finance applications including DEXs, lending protocols, yield farming strategies, and asset management tools.
</p>
</div>
<!-- Service 3 -->
<div class="service-card bg-white rounded-xl shadow-lg p-8 transition duration-300">
<div class="text-vlnxPrimary mb-4">
<i class="fas fa-image text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-vlnxDark mb-3">NFT Ecosystem</h3>
<p class="text-gray-600">
End-to-end NFT solutions from minting platforms to marketplaces, with integrated royalty systems and community features.
</p>
</div>
<!-- Service 4 -->
<div class="service-card bg-white rounded-xl shadow-lg p-8 transition duration-300">
<div class="text-vlnxPrimary mb-4">
<i class="fas fa-users text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-vlnxDark mb-3">DAO Framework</h3>
<p class="text-gray-600">
Complete DAO infrastructure including governance systems, treasury management, voting mechanisms, and member coordination tools.
</p>
</div>
<!-- Service 5 -->
<div class="service-card bg-white rounded-xl shadow-lg p-8 transition duration-300">
<div class="text-vlnxPrimary mb-4">
<i class="fas fa-shield-alt text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-vlnxDark mb-3">Security & Auditing</h3>
<p class="text-gray-600">
Comprehensive smart contract audits, penetration testing, and security best practices to protect your Web3 applications.
</p>
</div>
<!-- Service 6 -->
<div class="service-card bg-white rounded-xl shadow-lg p-8 transition duration-300">
<div class="text-vlnxPrimary mb-4">
<i class="fas fa-chart-line text-4xl"></i>
</div>
<h3 class="text-xl font-bold text-vlnxDark mb-3">Tokenomics Design</h3>
<p class="text-gray-600">
Strategic token design including utility, distribution models, vesting schedules, and economic sustainability planning.
</p>
</div>
</div>
</div>
</section>
<!-- Token Section -->
<section id="token" class="py-20 bg-vlnxLight">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h2 class="text-3xl font-bold text-vlnxDark mb-6">The VLNX Token</h2>
<p class="text-gray-700 mb-6">
The VLNX token powers the VELNEXOR ecosystem, providing access to services, governance rights, and staking rewards.
</p>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check-circle text-vlnxPrimary mt-1 mr-2"></i>
<span>Access premium VELNEXOR services at discounted rates</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-vlnxPrimary mt-1 mr-2"></i>
<span>Participate in platform governance and decision making</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-vlnxPrimary mt-1 mr-2"></i>
<span>Earn staking rewards and yield farming opportunities</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-vlnxPrimary mt-1 mr-2"></i>
<span>Exclusive access to academy courses and resources</span>
</li>
</ul>
<button class="bg-vlnxPrimary text-white px-6 py-3 rounded-md text-lg font-semibold hover:bg-vlnxSecondary transition duration-300">
Tokenomics Details
</button>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="token-card w-64 h-96">
<div class="token-card-inner relative w-full h-full">
<div class="token-card-front absolute w-full h-full bg-gradient-to-br from-vlnxPrimary to-vlnxSecondary rounded-xl shadow-2xl flex flex-col items-center justify-center p-6 text-white">
<i class="fas fa-coins text-6xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">VLNX Token</h3>
<p class="text-center">Powering the VELNEXOR Ecosystem</p>
</div>
<div class="token-card-back absolute w-full h-full bg-white rounded-xl shadow-2xl flex flex-col items-center justify-center p-6 text-vlnxDark">
<h3 class="text-xl font-bold mb-4">Token Details</h3>
<div class="text-left w-full space-y-2">
<p><span class="font-semibold">Symbol:</span> VLNX</p>
<p><span class="font-semibold">Chain:</span> Multichain</p>
<p><span class="font-semibold">Supply:</span> 1 Billion</p>
<p><span class="font-semibold">Type:</span> Utility & Governance</p>
</div>
<button class="mt-6 bg-vlnxPrimary text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-vlnxSecondary transition duration-300">
Buy Now
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Blockchain Section -->
<section id="blockchain" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-vlnxDark mb-4">Blockchain Solutions</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Custom blockchain development and enterprise solutions tailored to your needs
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12">
<div class="bg-vlnxDark text-white rounded-xl p-8">
<h3 class="text-xl font-bold mb-4">Private Blockchain Networks</h3>
<p class="mb-6">
Secure, scalable private blockchain solutions for enterprises with custom consensus mechanisms and permissioned access.
</p>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check text-vlnxSecondary mt-1 mr-2"></i>
<span>Custom consensus algorithms</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-vlnxSecondary mt-1 mr-2"></i>
<span>Enterprise-grade security</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-vlnxSecondary mt-1 mr-2"></i>
<span>Interoperability features</span>
</li>
</ul>
</div>
<div class="bg-vlnxLight text-vlnxDark rounded-xl p-8">
<h3 class="text-xl font-bold mb-4">Public Blockchain Integration</h3>
<p class="mb-6">
Seamless integration with major public blockchains including Ethereum, Polygon, Solana, and more.
</p>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check text-vlnxPrimary mt-1 mr-2"></i>
<span>Cross-chain bridges</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-vlnxPrimary mt-1 mr-2"></i>
<span>Layer 2 solutions</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-vlnxPrimary mt-1 mr-2"></i>
<span>Oracle integration</span>
</li>
</ul>
</div>
</div>
<div class="bg-gradient-to-r from-vlnxPrimary to-vlnxSecondary text-white rounded-xl p-8">
<div class="md:flex items-center">
<div class="md:w-2/3 mb-6 md:mb-0">
<h3 class="text-xl font-bold mb-3">Need a Custom Blockchain Solution?</h3>
<p>
Our team of blockchain architects can design and implement a solution tailored to your specific business requirements.
</p>
</div>
<div class="md:w-1/3 flex justify-end">
<button class="bg-white text-vlnxPrimary px-6 py-3 rounded-md text-lg font-semibold hover:bg-opacity-90 transition duration-300">
Contact Us
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Academy Section -->
<section id="academy" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-vlnxDark mb-4">VELNEXOR Academy</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Learn blockchain development, smart contract programming, and Web3 fundamentals from industry experts
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12">
<!-- Course 1 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="h-48 bg-gradient-to-r from-vlnxPrimary to-vlnxSecondary flex items-center justify-center">
<i class="fas fa-ethereum text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-vlnxDark mb-2">Blockchain Fundamentals</h3>
<p class="text-gray-600 mb-4">
Learn the core concepts of blockchain technology, consensus mechanisms, and decentralized systems.
</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">Beginner • 4 Weeks</span>
<button class="text-vlnxPrimary font-medium hover:text-vlnxSecondary">
Enroll Now
</button>
</div>
</div>
</div>
<!-- Course 2 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="h-48 bg-gradient-to-r from-vlnxPrimary to-vlnxSecondary flex items-center justify-center">
<i class="fas fa-solid fa-code text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-vlnxDark mb-2">Smart Contract Development</h3>
<p class="text-gray-600 mb-4">
Master Solidity and build secure smart contracts for Ethereum and EVM-compatible chains.
</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">Intermediate • 6 Weeks</span>
<button class="text-vlnxPrimary font-medium hover:text-vlnxSecondary">
Enroll Now
</button>
</div>
</div>
</div>
<!-- Course 3 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="h-48 bg-gradient-to-r from-vlnxPrimary to-vlnxSecondary flex items-center justify-center">
<i class="fas fa-chart-pie text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-vlnxDark mb-2">DeFi & Tokenomics</h3>
<p class="text-gray-600 mb-4">
Understand decentralized finance protocols and design effective token economies.
</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">Advanced • 8 Weeks</span>
<button class="text-vlnxPrimary font-medium hover:text-vlnxSecondary">
Enroll Now
</button>
</div>
</div>
</div>
</div>
<div class="text-center">
<button class="bg-vlnxPrimary text-white px-6 py-3 rounded-md text-lg font-semibold hover:bg-vlnxSecondary transition duration-300">
View All Courses
</button>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-vlnxDark text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h2 class="text-3xl font-bold mb-6">About VELNEXOR</h2>
<p class="mb-6 opacity-90">
Founded in 2022, VELNEXOR is a leading Web3 solutions provider with a mission to accelerate blockchain adoption through innovative technology and education.
</p>
<p class="mb-8 opacity-90">
Our team of blockchain experts, developers, and educators come from diverse backgrounds in technology, finance, and academia, united by a shared vision of a decentralized future.
</p>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-10 flex items-center justify-center hover:bg-opacity-20 transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-10 flex items-center justify-center hover:bg-opacity-20 transition duration-300">
<i class="fab fa-discord"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-10 flex items-center justify-center hover:bg-opacity-20 transition duration-300">
<i class="fab fa-github"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-10 flex items-center justify-center hover:bg-opacity-20 transition duration-300">
<i class="fab fa-telegram"></i>
</a>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-white bg-opacity-10 rounded-xl p-8">
<h3 class="text-xl font-bold mb-4">Join Our Community</h3>
<p class="mb-6 opacity-90">
Stay updated with the latest news, product releases, and educational content from VELNEXOR.
</p>
<form>
<div class="mb-4">
<input type="email" placeholder="Your email address" class="w-full bg-white bg-opacity-10 border border-white border-opacity-20 rounded-md px-4 py-3 text-white placeholder-white placeholder-opacity-70 focus:outline-none focus:ring-2 focus:ring-vlnxSecondary">
</div>
<button type="submit" class="w-full bg-vlnxPrimary text-white px-6 py-3 rounded-md text-lg font-semibold hover:bg-vlnxSecondary transition duration-300">
Subscribe
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<i class="fas fa-cube text-vlnxPrimary text-2xl mr-2"></i>
<span class="text-xl font-bold">VELNEXOR</span>
</div>
<p class="text-gray-400">
Building the decentralized future through technology and education.
</p>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Services</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Smart Contracts</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">DeFi Solutions</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">NFT Platforms</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Blockchain Development</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Academy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">GitHub</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Press</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">
© 2023 VELNEXOR. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-discord"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-telegram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-medium"></i>
</a>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="backToTop" class="fixed bottom-8 right-8 bg-vlnxPrimary text-white w-12 h-12 rounded-full flex items-center justify-center shadow-lg hover:bg-vlnxSecondary transition duration-300 hidden">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Back to Top Button
const backToTopButton = document.getElementById('backToTop');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('hidden');
} else {
backToTopButton.classList.add('hidden');
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Mobile Menu Toggle (would need actual implementation)
const mobileMenuButton = document.querySelector('.md\\:hidden');
mobileMenuButton.addEventListener('click', () => {
alert('Mobile menu would open here in a full implementation');
});
// Wallet Connection (simulated)
const connectWalletButton = document.querySelector('button:contains("Connect Wallet")');
connectWalletButton.addEventListener('click', () => {
alert('Wallet connection modal would appear here');
});
</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=ocholla144/latstt" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |