File size: 48,367 Bytes
1844079 | 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 774 775 776 777 778 779 780 781 | <!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RxDevelopement | Premium Minecraft Plugins</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">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--rx-cyan: #00ffff;
--rx-purple: #8b5cf6;
--rx-dark: #0e0e0e;
}
body {
font-family: 'Poppins', sans-serif;
background-color: var(--rx-dark);
color: #e5e7eb;
scroll-behavior: smooth;
}
.gradient-text {
background: linear-gradient(90deg, var(--rx-cyan), var(--rx-purple));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.glow {
text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
}
}
.plugin-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}
.team-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}
</style>
</head>
<body class="min-h-screen flex flex-col">
<!-- Navbar -->
<nav class="bg-gray-900/80 backdrop-blur-md border-b border-gray-800 fixed w-full z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0">
<a href="#" class="text-2xl font-bold gradient-text">RxDevelopement</a>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-4">
<a href="#home" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-all hover:bg-gray-800">Home</a>
<a href="#plugins" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-all hover:bg-gray-800">Plugins</a>
<a href="#team" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-all hover:bg-gray-800">Team</a>
<a href="#about" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-all hover:bg-gray-800">About</a>
<a href="#join" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-all hover:bg-gray-800">Join Us</a>
<a href="#contact" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-all hover:bg-gray-800">Contact</a>
</div>
</div>
</div>
<div class="hidden md:block">
<div class="ml-4 flex items-center md:ml-6">
<button class="p-1 rounded-full text-gray-400 hover:text-white focus:outline-none">
<span class="sr-only">View notifications</span>
<i class="fas fa-moon text-lg"></i>
</button>
</div>
</div>
<div class="-mr-2 flex md:hidden">
<button id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars text-lg"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Home</a>
<a href="#plugins" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Plugins</a>
<a href="#team" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Team</a>
<a href="#about" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">About</a>
<a href="#join" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Join Us</a>
<a href="#contact" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="relative pt-32 pb-20 md:pt-40 md:pb-28 px-4 sm:px-6 lg:px-8 bg-gradient-to-b from-gray-900 to-gray-800">
<div class="max-w-7xl mx-auto">
<div class="text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">
<span class="gradient-text glow">⚡ Welcome to RxDevelopement</span>
</h1>
<p class="text-xl md:text-2xl text-gray-300 max-w-3xl mx-auto mb-10">
We craft powerful Minecraft plugins that push the limits of creativity.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#plugins" class="px-8 py-3 bg-gradient-to-r from-cyan-500 to-purple-600 rounded-full font-medium text-white hover:shadow-lg hover:shadow-cyan-500/30 transition-all transform hover:scale-105">
View Plugins
</a>
<a href="#join" class="px-8 py-3 border border-cyan-400 rounded-full font-medium text-cyan-400 hover:bg-cyan-400/10 transition-all transform hover:scale-105">
Join Our Team
</a>
</div>
</div>
<!-- Plugin Stats -->
<div class="mt-20 grid grid-cols-2 md:grid-cols-4 gap-6 max-w-4xl mx-auto">
<div class="bg-gray-800/50 backdrop-blur-sm p-6 rounded-xl border border-gray-700 text-center">
<div class="text-3xl font-bold text-cyan-400 mb-2">50+</div>
<div class="text-gray-300">Plugins</div>
</div>
<div class="bg-gray-800/50 backdrop-blur-sm p-6 rounded-xl border border-gray-700 text-center">
<div class="text-3xl font-bold text-purple-400 mb-2">10K+</div>
<div class="text-gray-300">Downloads</div>
</div>
<div class="bg-gray-800/50 backdrop-blur-sm p-6 rounded-xl border border-gray-700 text-center">
<div class="text-3xl font-bold text-cyan-400 mb-2">5K+</div>
<div class="text-gray-300">Servers</div>
</div>
<div class="bg-gray-800/50 backdrop-blur-sm p-6 rounded-xl border border-gray-700 text-center">
<div class="text-3xl font-bold text-purple-400 mb-2">24/7</div>
<div class="text-gray-300">Support</div>
</div>
</div>
</div>
<!-- Animated background elements -->
<div class="absolute inset-0 overflow-hidden -z-10">
<div class="absolute top-0 left-0 w-64 h-64 bg-purple-600 rounded-full filter blur-3xl opacity-10"></div>
<div class="absolute bottom-0 right-0 w-64 h-64 bg-cyan-500 rounded-full filter blur-3xl opacity-10"></div>
</div>
</section>
<!-- Plugins Section -->
<section id="plugins" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-900">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="gradient-text">Our Premium Plugins</span>
</h2>
<p class="text-gray-400 max-w-2xl mx-auto">
High-quality plugins designed to enhance your Minecraft experience with unique features.
</p>
</div>
<!-- Plugin Filter -->
<div class="flex flex-wrap justify-center gap-3 mb-12">
<button class="px-4 py-2 rounded-full bg-cyan-500/10 border border-cyan-400 text-cyan-400 font-medium">All</button>
<button class="px-4 py-2 rounded-full bg-gray-800 hover:bg-gray-700 text-gray-300 font-medium">PvP</button>
<button class="px-4 py-2 rounded-full bg-gray-800 hover:bg-gray-700 text-gray-300 font-medium">Economy</button>
<button class="px-4 py-2 rounded-full bg-gray-800 hover:bg-gray-700 text-gray-300 font-medium">Cosmetics</button>
<button class="px-4 py-2 rounded-full bg-gray-800 hover:bg-gray-700 text-gray-300 font-medium">Utility</button>
</div>
<!-- Plugin Cards -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Plugin 1 -->
<div class="plugin-card bg-gray-800 rounded-xl overflow-hidden border border-gray-700 transition-all duration-300 hover:border-cyan-400">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-lg bg-gradient-to-r from-cyan-500 to-purple-600 flex items-center justify-center text-white text-xl">
<i class="fas fa-shield-alt"></i>
</div>
<h3 class="text-xl font-bold ml-4">RxCombat</h3>
</div>
<p class="text-gray-400 mb-6">
Advanced PvP plugin with custom combat mechanics, kill effects, and leaderboards.
</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="px-3 py-1 bg-gray-700 rounded-full text-xs text-cyan-400">PvP</span>
<span class="px-3 py-1 bg-gray-700 rounded-full text-xs text-purple-400">1.8-1.20</span>
</div>
<div class="flex justify-between items-center">
<span class="text-cyan-400 font-bold">$14.99</span>
<button class="px-4 py-2 bg-gradient-to-r from-cyan-500 to-purple-600 rounded-lg text-white font-medium hover:opacity-90 transition-all">
View Details
</button>
</div>
</div>
</div>
<!-- Plugin 2 -->
<div class="plugin-card bg-gray-800 rounded-xl overflow-hidden border border-gray-700 transition-all duration-300 hover:border-cyan-400">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-lg bg-gradient-to-r from-purple-500 to-cyan-600 flex items-center justify-center text-white text-xl">
<i class="fas fa-coins"></i>
</div>
<h3 class="text-xl font-bold ml-4">RxEconomy</h3>
</div>
<p class="text-gray-400 mb-6">
Complete economy solution with shops, banks, auctions, and custom currencies.
</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="px-3 py-1 bg-gray-700 rounded-full text-xs text-cyan-400">Economy</span>
<span class="px-3 py-1 bg-gray-700 rounded-full text-xs text-purple-400">1.16+</span>
</div>
<div class="flex justify-between items-center">
<span class="text-cyan-400 font-bold">$19.99</span>
<button class="px-4 py-2 bg-gradient-to-r from-cyan-500 to-purple-600 rounded-lg text-white font-medium hover:opacity-90 transition-all">
View Details
</button>
</div>
</div>
</div>
<!-- Plugin 3 -->
<div class="plugin-card bg-gray-800 rounded-xl overflow-hidden border border-gray-700 transition-all duration-300 hover:border-cyan-400">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-lg bg-gradient-to-r from-cyan-500 to-purple-600 flex items-center justify-center text-white text-xl">
<i class="fas fa-hat-wizard"></i>
</div>
<h3 class="text-xl font-bold ml-4">RxCosmetics</h3>
</div>
<p class="text-gray-400 mb-6">
Extensive cosmetic system with particles, pets, gadgets, and custom animations.
</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="px-3 py-1 bg-gray-700 rounded-full text-xs text-cyan-400">Cosmetics</span>
<span class="px-3 py-1 bg-gray-700 rounded-full text-xs text-purple-400">1.8+</span>
</div>
<div class="flex justify-between items-center">
<span class="text-cyan-400 font-bold">$24.99</span>
<button class="px-4 py-2 bg-gradient-to-r from-cyan-500 to-purple-600 rounded-lg text-white font-medium hover:opacity-90 transition-all">
View Details
</button>
</div>
</div>
</div>
</div>
<!-- Plugin of the Month -->
<div class="mt-16 bg-gradient-to-r from-gray-800 to-gray-900 rounded-xl border border-gray-700 overflow-hidden">
<div class="p-8 md:p-10">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/3 mb-6 md:mb-0">
<div class="w-24 h-24 rounded-lg bg-gradient-to-r from-purple-600 to-cyan-500 flex items-center justify-center text-white text-4xl mx-auto md:mx-0">
<i class="fas fa-star"></i>
</div>
</div>
<div class="md:w-2/3 md:pl-8">
<div class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 rounded-full text-sm font-medium mb-3">
Plugin of the Month
</div>
<h3 class="text-2xl font-bold mb-3">RxSkyblock</h3>
<p class="text-gray-400 mb-6">
The ultimate skyblock experience with custom islands, challenges, and progression systems. Now with 1.20 support and new island themes!
</p>
<div class="flex flex-wrap gap-3">
<button class="px-6 py-2 bg-gradient-to-r from-cyan-500 to-purple-600 rounded-lg text-white font-medium hover:opacity-90 transition-all">
Get It Now
</button>
<button class="px-6 py-2 border border-cyan-400 rounded-lg text-cyan-400 font-medium hover:bg-cyan-400/10 transition-all">
Learn More
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section id="team" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-800">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="gradient-text">Meet Our Team</span>
</h2>
<p class="text-gray-400 max-w-2xl mx-auto">
The talented developers and designers behind RxDevelopement.
</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Team Member 1 -->
<div class="team-card bg-gray-900 rounded-xl overflow-hidden border border-gray-700 transition-all duration-300 hover:border-purple-500">
<div class="p-6">
<div class="flex flex-col items-center text-center">
<div class="w-24 h-24 rounded-full bg-gradient-to-r from-cyan-500 to-purple-600 p-1 mb-4">
<img src="https://via.placeholder.com/150" alt="Team Member" class="w-full h-full rounded-full object-cover">
</div>
<h3 class="text-xl font-bold">Ritik</h3>
<p class="text-cyan-400 mb-4">Lead Developer</p>
<p class="text-gray-400 mb-6">
Java expert with 5+ years of Minecraft plugin development experience.
</p>
<div class="flex gap-4">
<a href="#" class="text-gray-400 hover:text-cyan-400 transition-all">
<i class="fab fa-discord text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-purple-400 transition-all">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-blue-400 transition-all">
<i class="fab fa-twitter text-xl"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Team Member 2 -->
<div class="team-card bg-gray-900 rounded-xl overflow-hidden border border-gray-700 transition-all duration-300 hover:border-purple-500">
<div class="p-6">
<div class="flex flex-col items-center text-center">
<div class="w-24 h-24 rounded-full bg-gradient-to-r from-purple-500 to-cyan-600 p-1 mb-4">
<img src="https://via.placeholder.com/150" alt="Team Member" class="w-full h-full rounded-full object-cover">
</div>
<h3 class="text-xl font-bold">Alex</h3>
<p class="text-purple-400 mb-4">UI/UX Designer</p>
<p class="text-gray-400 mb-6">
Creates stunning interfaces and user experiences for our plugins.
</p>
<div class="flex gap-4">
<a href="#" class="text-gray-400 hover:text-cyan-400 transition-all">
<i class="fab fa-discord text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-purple-400 transition-all">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-blue-400 transition-all">
<i class="fab fa-twitter text-xl"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Team Member 3 -->
<div class="team-card bg-gray-900 rounded-xl overflow-hidden border border-gray-700 transition-all duration-300 hover:border-purple-500">
<div class="p-6">
<div class="flex flex-col items-center text-center">
<div class="w-24 h-24 rounded-full bg-gradient-to-r from-cyan-500 to-purple-600 p-1 mb-4">
<img src="https://via.placeholder.com/150" alt="Team Member" class="w-full h-full rounded-full object-cover">
</div>
<h3 class="text-xl font-bold">Sam</h3>
<p class="text-cyan-400 mb-4">Plugin Developer</p>
<p class="text-gray-400 mb-6">
Specializes in performance optimization and backend systems.
</p>
<div class="flex gap-4">
<a href="#" class="text-gray-400 hover:text-cyan-400 transition-all">
<i class="fab fa-discord text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-purple-400 transition-all">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-blue-400 transition-all">
<i class="fab fa-twitter text-xl"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-900">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-3xl md:text-4xl font-bold mb-6">
<span class="gradient-text">About RxDevelopement</span>
</h2>
<p class="text-gray-400 mb-6">
Founded in 2020, RxDevelopement started as a small group of Minecraft enthusiasts with a passion for creating unique server experiences.
</p>
<p class="text-gray-400 mb-6">
Our mission is to push the boundaries of what's possible in Minecraft plugin development, delivering high-performance, feature-rich plugins with exceptional support.
</p>
<div class="mb-8">
<h3 class="text-xl font-bold text-cyan-400 mb-4">Our Values</h3>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check text-cyan-400 mt-1 mr-3"></i>
<span class="text-gray-400">Innovation - We constantly explore new ideas</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-cyan-400 mt-1 mr-3"></i>
<span class="text-gray-400">Quality - Only the best for our customers</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-cyan-400 mt-1 mr-3"></i>
<span class="text-gray-400">Community - We listen and grow together</span>
</li>
</ul>
</div>
</div>
<div>
<div class="bg-gray-800 rounded-xl p-8 border border-gray-700">
<h3 class="text-xl font-bold text-purple-400 mb-6">Our Tech Stack</h3>
<div class="grid grid-cols-2 gap-4">
<div class="flex items-center bg-gray-700/50 p-3 rounded-lg">
<div class="w-10 h-10 rounded-lg bg-blue-600 flex items-center justify-center text-white mr-3">
<i class="fab fa-java"></i>
</div>
<span class="font-medium">Java</span>
</div>
<div class="flex items-center bg-gray-700/50 p-3 rounded-lg">
<div class="w-10 h-10 rounded-lg bg-yellow-500 flex items-center justify-center text-white mr-3">
<i class="fas fa-cube"></i>
</div>
<span class="font-medium">Spigot</span>
</div>
<div class="flex items-center bg-gray-700/50 p-3 rounded-lg">
<div class="w-10 h-10 rounded-lg bg-green-600 flex items-center justify-center text-white mr-3">
<i class="fas fa-leaf"></i>
</div>
<span class="font-medium">Paper</span>
</div>
<div class="flex items-center bg-gray-700/50 p-3 rounded-lg">
<div class="w-10 h-10 rounded-lg bg-purple-600 flex items-center justify-center text-white mr-3">
<i class="fas fa-project-diagram"></i>
</div>
<span class="font-medium">Maven</span>
</div>
<div class="flex items-center bg-gray-700/50 p-3 rounded-lg">
<div class="w-10 h-10 rounded-lg bg-red-500 flex items-center justify-center text-white mr-3">
<i class="fab fa-git-alt"></i>
</div>
<span class="font-medium">Git</span>
</div>
<div class="flex items-center bg-gray-700/50 p-3 rounded-lg">
<div class="w-10 h-10 rounded-lg bg-blue-400 flex items-center justify-center text-white mr-3">
<i class="fab fa-github"></i>
</div>
<span class="font-medium">GitHub</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Join Us Section -->
<section id="join" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-800">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="gradient-text">Join Our Team</span>
</h2>
<p class="text-gray-400 max-w-2xl mx-auto">
We're always looking for talented individuals to join our growing team.
</p>
</div>
<div class="bg-gray-900 rounded-xl border border-gray-700 overflow-hidden">
<div class="p-8 md:p-10">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<h3 class="text-xl font-bold text-cyan-400 mb-6">Open Positions</h3>
<div class="space-y-6">
<div class="bg-gray-800/50 p-4 rounded-lg border border-gray-700">
<h4 class="font-bold mb-2">Java Developer</h4>
<p class="text-sm text-gray-400 mb-3">
Create and maintain high-quality Minecraft plugins with our team.
</p>
<div class="flex flex-wrap gap-2">
<span class="px-2 py-1 bg-gray-700 rounded-full text-xs text-cyan-400">Java</span>
<span class="px-2 py-1 bg-gray-700 rounded-full text-xs text-purple-400">Spigot</span>
<span class="px-2 py-1 bg-gray-700 rounded-full text-xs text-cyan-400">Maven</span>
</div>
</div>
<div class="bg-gray-800/50 p-4 rounded-lg border border-gray-700">
<h4 class="font-bold mb-2">UI/UX Designer</h4>
<p class="text-sm text-gray-400 mb-3">
Design intuitive interfaces for our plugins and web presence.
</p>
<div class="flex flex-wrap gap-2">
<span class="px-2 py-1 bg-gray-700 rounded-full text-xs text-purple-400">Figma</span>
<span class="px-2 py-1 bg-gray-700 rounded-full text-xs text-cyan-400">Photoshop</span>
<span class="px-2 py-1 bg-gray-700 rounded-full text-xs text-purple-400">UI Design</span>
</div>
</div>
<div class="bg-gray-800/50 p-4 rounded-lg border border-gray-700">
<h4 class="font-bold mb-2">Plugin Tester</h4>
<p class="text-sm text-gray-400 mb-3">
Help ensure our plugins are bug-free and user-friendly.
</p>
<div class="flex flex-wrap gap-2">
<span class="px-2 py-1 bg-gray-700 rounded-full text-xs text-cyan-400">Testing</span>
<span class="px-2 py-1 bg-gray-700 rounded-full text-xs text-purple-400">Feedback</span>
<span class="px-2 py-1 bg-gray-700 rounded-full text-xs text-cyan-400">Minecraft</span>
</div>
</div>
</div>
</div>
<div>
<h3 class="text-xl font-bold text-purple-400 mb-6">Apply Now</h3>
<form class="space-y-4">
<div>
<label for="name" class="block text-sm font-medium text-gray-300 mb-1">Full Name</label>
<input type="text" id="name" class="w-full px-4 py-2 bg-gray-800 border border-gray-700 rounded-lg focus:ring-2 focus:ring-cyan-500 focus:border-transparent text-white placeholder-gray-500">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-300 mb-1">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 bg-gray-800 border border-gray-700 rounded-lg focus:ring-2 focus:ring-cyan-500 focus:border-transparent text-white placeholder-gray-500">
</div>
<div>
<label for="position" class="block text-sm font-medium text-gray-300 mb-1">Position</label>
<select id="position" class="w-full px-4 py-2 bg-gray-800 border border-gray-700 rounded-lg focus:ring-2 focus:ring-cyan-500 focus:border-transparent text-white">
<option>Select a position</option>
<option>Java Developer</option>
<option>UI/UX Designer</option>
<option>Plugin Tester</option>
<option>Other</option>
</select>
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-300 mb-1">Why you?</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 bg-gray-800 border border-gray-700 rounded-lg focus:ring-2 focus:ring-cyan-500 focus:border-transparent text-white placeholder-gray-500"></textarea>
</div>
<button type="submit" class="w-full px-6 py-3 bg-gradient-to-r from-cyan-500 to-purple-600 rounded-lg text-white font-medium hover:opacity-90 transition-all">
Submit Application
</button>
</form>
<p class="text-sm text-gray-500 mt-4">
Or contact us directly on Discord: <span class="text-cyan-400">notritik.exe</span>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-900">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="gradient-text">Get In Touch</span>
</h2>
<p class="text-gray-400 max-w-2xl mx-auto">
Have questions or need support? Reach out to us through any of these channels.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-gray-800 rounded-xl p-8 border border-gray-700">
<h3 class="text-xl font-bold text-cyan-400 mb-6">Contact Information</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="w-10 h-10 rounded-lg bg-purple-600 flex items-center justify-center text-white mr-4 flex-shrink-0">
<i class="fab fa-discord"></i>
</div>
<div>
<h4 class="font-bold mb-1">Discord</h4>
<p class="text-gray-400">Join our community for support and updates</p>
<a href="#" class="text-cyan-400 hover:underline">discord.gg/rxdev</a>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 rounded-lg bg-blue-500 flex items-center justify-center text-white mr-4 flex-shrink-0">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-bold mb-1">Email</h4>
<p class="text-gray-400">For business inquiries and support</p>
<a href="mailto:contact@rxdev.com" class="text-cyan-400 hover:underline">contact@rxdev.com</a>
</div>
</div>
<div class="flex items-start">
<div class="w-10 h-10 rounded-lg bg-orange-500 flex items-center justify-center text-white mr-4 flex-shrink-0">
<i class="fas fa-store"></i>
</div>
<div>
<h4 class="font-bold mb-1">SpigotMC</h4>
<p class="text-gray-400">Check out our plugins on SpigotMC</p>
<a href="#" class="text-cyan-400 hover:underline">spigotmc.org/rxdev</a>
</div>
</div>
</div>
</div>
<div class="bg-gray-800 rounded-xl p-8 border border-gray-700">
<h3 class="text-xl font-bold text-purple-400 mb-6">Send Us a Message</h3>
<form class="space-y-4">
<div>
<label for="contact-name" class="block text-sm font-medium text-gray-300 mb-1">Name</label>
<input type="text" id="contact-name" class="w-full px-4 py-2 bg-gray-700 border border-gray-600 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-transparent text-white placeholder-gray-400">
</div>
<div>
<label for="contact-email" class="block text-sm font-medium text-gray-300 mb-1">Email</label>
<input type="email" id="contact-email" class="w-full px-4 py-2 bg-gray-700 border border-gray-600 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-transparent text-white placeholder-gray-400">
</div>
<div>
<label for="contact-subject" class="block text-sm font-medium text-gray-300 mb-1">Subject</label>
<input type="text" id="contact-subject" class="w-full px-4 py-2 bg-gray-700 border border-gray-600 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-transparent text-white placeholder-gray-400">
</div>
<div>
<label for="contact-message" class="block text-sm font-medium text-gray-300 mb-1">Message</label>
<textarea id="contact-message" rows="4" class="w-full px-4 py-2 bg-gray-700 border border-gray-600 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-transparent text-white placeholder-gray-400"></textarea>
</div>
<button type="submit" class="w-full px-6 py-3 bg-gradient-to-r from-purple-600 to-cyan-500 rounded-lg text-white font-medium hover:opacity-90 transition-all">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<div class="bg-gradient-to-r from-gray-800 to-gray-900 py-12 px-4 sm:px-6 lg:px-8 border-t border-b border-gray-700">
<div class="max-w-4xl mx-auto">
<div class="text-center">
<h3 class="text-2xl font-bold mb-4">Stay Updated</h3>
<p class="text-gray-400 mb-8 max-w-2xl mx-auto">
Subscribe to our newsletter to receive updates on new plugins, features, and special offers.
</p>
<form class="flex flex-col sm:flex-row gap-3 max-w-md mx-auto">
<input type="email" placeholder="Your email" class="flex-grow px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:ring-2 focus:ring-cyan-500 focus:border-transparent text-white placeholder-gray-400">
<button type="submit" class="px-6 py-3 bg-gradient-to-r from-cyan-500 to-purple-600 rounded-lg text-white font-medium hover:opacity-90 transition-all whitespace-nowrap">
Subscribe
</button>
</form>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-900 py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold gradient-text mb-4">RxDevelopement</h3>
<p class="text-gray-400 mb-4">
Crafting premium Minecraft plugins that push the limits of creativity.
</p>
<div class="flex gap-4">
<a href="#" class="text-gray-400 hover:text-cyan-400 transition-all">
<i class="fab fa-discord text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-purple-400 transition-all">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-blue-400 transition-all">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-orange-400 transition-all">
<i class="fas fa-store text-xl"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-bold text-gray-300 mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-cyan-400 transition-all">Home</a></li>
<li><a href="#plugins" class="text-gray-400 hover:text-cyan-400 transition-all">Plugins</a></li>
<li><a href="#team" class="text-gray-400 hover:text-cyan-400 transition-all">Team</a></li>
<li><a href="#about" class="text-gray-400 hover:text-cyan-400 transition-all">About</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold text-gray-300 mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-purple-400 transition-all">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-purple-400 transition-all">Changelog</a></li>
<li><a href="#" class="text-gray-400 hover:text-purple-400 transition-all">Support</a></li>
<li><a href="#" class="text-gray-400 hover:text-purple-400 transition-all">FAQ</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold text-gray-300 mb-4">Legal</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition-all">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition-all">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition-all">Refund Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-cyan-400 transition-all">Licensing</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-500 mb-4 md:mb-0">
© 2025 RxDevelopement. All rights reserved.
</p>
<div class="flex gap-4">
<a href="#" class="text-gray-500 hover:text-cyan-400 transition-all">Terms</a>
<a href="#" class="text-gray-500 hover:text-cyan-400 transition-all">Privacy</a>
<a href="#" class="text-gray-500 hover:text-cyan-400 transition-all">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
// Close mobile menu if open
document.getElementById('mobile-menu').classList.add('hidden');
// Scroll to target
targetElement.scrollIntoView({
behavior: 'smooth'
});
}
});
});
// Dark mode toggle (placeholder - would need actual implementation)
document.querySelector('nav button').addEventListener('click', function() {
document.documentElement.classList.toggle('dark');
const icon = this.querySelector('i');
if (document.documentElement.classList.contains('dark')) {
icon.classList.remove('fa-moon');
icon.classList.add('fa-sun');
} else {
icon.classList.remove('fa-sun');
icon.classList.add('fa-moon');
}
});
// Plugin filter functionality (placeholder)
document.querySelectorAll('#plugins .flex-wrap button').forEach(button => {
button.addEventListener('click', function() {
// Remove active class from all buttons
document.querySelectorAll('#plugins .flex-wrap button').forEach(btn => {
btn.classList.remove('bg-cyan-500/10', 'border-cyan-400', 'text-cyan-400');
btn.classList.add('bg-gray-800', 'hover:bg-gray-700', 'text-gray-300');
});
// Add active class to clicked button
this.classList.add('bg-cyan-500/10', 'border-cyan-400', 'text-cyan-400');
this.classList.remove('bg-gray-800', 'hover:bg-gray-700', 'text-gray-300');
// Here you would filter plugins based on the button clicked
// This is just a placeholder implementation
console.log('Filtering plugins by: ' + this.textContent.trim());
});
});
</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=notritik/rxdev1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |