File size: 36,664 Bytes
97ce991 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MineHost - Minecraft & Discord Server Hosting</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, #1e3a8a 0%, #0ea5e9 100%);
}
.discord-gradient-bg {
background: linear-gradient(135deg, #5865F2 0%, #404EED 100%);
}
.server-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);
}
.feature-icon {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
background: rgba(255, 255, 255, 0.1);
}
.pricing-card {
transition: all 0.3s ease;
}
.pricing-card:hover {
transform: scale(1.03);
}
.popular-plan {
border: 2px solid #3b82f6;
position: relative;
overflow: hidden;
}
.popular-badge {
position: absolute;
top: 0;
right: 0;
background-color: #3b82f6;
color: white;
padding: 2px 10px;
font-size: 12px;
transform: translate(25%, -50%) rotate(45deg);
transform-origin: bottom left;
width: 100px;
text-align: center;
}
.discord-popular-plan {
border: 2px solid #5865F2;
}
.discord-popular-badge {
background-color: #5865F2;
}
.tab-button {
transition: all 0.3s ease;
}
.tab-button.active {
background-color: #3b82f6;
color: white;
}
.discord-tab-button.active {
background-color: #5865F2;
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Navigation -->
<nav class="gradient-bg text-white shadow-lg">
<div class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center space-x-4">
<i class="fas fa-server text-2xl"></i>
<span class="text-xl font-bold">MineHost</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#" class="hover:text-blue-200">Home</a>
<a href="#pricing" class="hover:text-blue-200">Pricing</a>
<a href="#features" class="hover:text-blue-200">Features</a>
<a href="#support" class="hover:text-blue-200">Support</a>
<button class="bg-white text-blue-600 px-4 py-2 rounded-md font-medium hover:bg-gray-100 transition">Login</button>
</div>
<button class="md:hidden text-white focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg text-white py-20">
<div class="container mx-auto px-6 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Premium Server Hosting</h1>
<p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto">Get high-performance Minecraft and Discord servers with 99.9% uptime, DDoS protection, and instant setup.</p>
<div class="flex flex-col md:flex-row justify-center gap-4">
<button class="bg-white text-blue-600 px-8 py-4 rounded-md font-bold text-lg hover:bg-gray-100 transition">Get Started</button>
<button class="bg-transparent border-2 border-white px-8 py-4 rounded-md font-bold text-lg hover:bg-white hover:text-blue-600 transition">Learn More</button>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 bg-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-16">Why Choose MineHost?</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-10">
<!-- Feature 1 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="feature-icon text-blue-500 mb-6">
<i class="fas fa-bolt text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Blazing Fast Performance</h3>
<p class="text-gray-600">Our high-performance servers ensure lag-free experience with SSD storage and powerful CPUs for both Minecraft and Discord.</p>
</div>
<!-- Feature 2 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="feature-icon text-blue-500 mb-6">
<i class="fas fa-shield-alt text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">DDoS Protection</h3>
<p class="text-gray-600">Advanced protection against DDoS attacks keeps your servers online and accessible at all times.</p>
</div>
<!-- Feature 3 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="feature-icon text-blue-500 mb-6">
<i class="fas fa-sliders-h text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Easy Control Panel</h3>
<p class="text-gray-600">Our intuitive control panel makes server management simple, even for beginners.</p>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-4">Simple, Transparent Pricing</h2>
<p class="text-gray-600 text-center mb-8 max-w-2xl mx-auto">Choose the perfect plan for your needs. All plans come with our 24/7 support and 99.9% uptime guarantee.</p>
<!-- Tab Navigation -->
<div class="flex justify-center mb-12">
<div class="inline-flex rounded-md shadow-sm">
<button id="minecraft-tab" class="tab-button active px-6 py-3 text-sm font-medium rounded-l-lg">
Minecraft Hosting
</button>
<button id="discord-tab" class="tab-button discord-tab-button px-6 py-3 text-sm font-medium rounded-r-lg">
Discord Hosting
</button>
</div>
</div>
<!-- Minecraft Pricing -->
<div id="minecraft-pricing" class="pricing-content">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Basic Plan -->
<div class="pricing-card bg-white p-8 rounded-xl shadow-md">
<h3 class="text-xl font-bold mb-2">Basic</h3>
<p class="text-gray-600 mb-6">Perfect for small friend groups</p>
<div class="mb-6">
<span class="text-4xl font-bold">$5</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>1GB RAM</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>10 Player Slots</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>20GB SSD Storage</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times text-red-400 mr-2"></i>
<span>No Dedicated IP</span>
</li>
</ul>
<button class="w-full bg-gray-200 text-gray-800 py-3 rounded-md font-medium hover:bg-gray-300 transition">Get Started</button>
</div>
<!-- Popular Plan -->
<div class="pricing-card popular-plan bg-white p-8 rounded-xl shadow-lg relative">
<div class="popular-badge">POPULAR</div>
<h3 class="text-xl font-bold mb-2">Standard</h3>
<p class="text-gray-600 mb-6">Great for medium communities</p>
<div class="mb-6">
<span class="text-4xl font-bold">$10</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>4GB RAM</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>30 Player Slots</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>50GB SSD Storage</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Dedicated IP</span>
</li>
</ul>
<button class="w-full bg-blue-600 text-white py-3 rounded-md font-medium hover:bg-blue-700 transition">Get Started</button>
</div>
<!-- Premium Plan -->
<div class="pricing-card bg-white p-8 rounded-xl shadow-md">
<h3 class="text-xl font-bold mb-2">Premium</h3>
<p class="text-gray-600 mb-6">For large communities & networks</p>
<div class="mb-6">
<span class="text-4xl font-bold">$20</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>8GB RAM</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Unlimited Slots</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>100GB SSD Storage</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Dedicated IP</span>
</li>
</ul>
<button class="w-full bg-gray-200 text-gray-800 py-3 rounded-md font-medium hover:bg-gray-300 transition">Get Started</button>
</div>
</div>
</div>
<!-- Discord Pricing -->
<div id="discord-pricing" class="pricing-content hidden">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Basic Discord Plan -->
<div class="pricing-card bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<i class="fab fa-discord text-2xl text-[#5865F2] mr-2"></i>
<h3 class="text-xl font-bold">Basic Bot</h3>
</div>
<p class="text-gray-600 mb-6">For small Discord servers</p>
<div class="mb-6">
<span class="text-4xl font-bold">$3</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>512MB RAM</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>1 vCPU Core</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>10GB SSD Storage</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times text-red-400 mr-2"></i>
<span>No 24/7 Voice</span>
</li>
</ul>
<button class="w-full bg-gray-200 text-gray-800 py-3 rounded-md font-medium hover:bg-gray-300 transition">Get Started</button>
</div>
<!-- Popular Discord Plan -->
<div class="pricing-card discord-popular-plan bg-white p-8 rounded-xl shadow-lg relative">
<div class="popular-badge discord-popular-badge">POPULAR</div>
<div class="flex items-center mb-4">
<i class="fab fa-discord text-2xl text-[#5865F2] mr-2"></i>
<h3 class="text-xl font-bold">Standard Bot</h3>
</div>
<p class="text-gray-600 mb-6">For medium Discord communities</p>
<div class="mb-6">
<span class="text-4xl font-bold">$7</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>1GB RAM</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>2 vCPU Cores</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>25GB SSD Storage</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>24/7 Voice</span>
</li>
</ul>
<button class="w-full bg-[#5865F2] text-white py-3 rounded-md font-medium hover:bg-[#4752C4] transition">Get Started</button>
</div>
<!-- Premium Discord Plan -->
<div class="pricing-card bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<i class="fab fa-discord text-2xl text-[#5865F2] mr-2"></i>
<h3 class="text-xl font-bold">Premium Bot</h3>
</div>
<p class="text-gray-600 mb-6">For large Discord networks</p>
<div class="mb-6">
<span class="text-4xl font-bold">$15</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>2GB RAM</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>4 vCPU Cores</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>50GB SSD Storage</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>24/7 Voice + Backup</span>
</li>
</ul>
<button class="w-full bg-gray-200 text-gray-800 py-3 rounded-md font-medium hover:bg-gray-300 transition">Get Started</button>
</div>
</div>
<!-- Discord Voice Servers -->
<div class="mt-16">
<h3 class="text-2xl font-bold text-center mb-8">Discord Voice Servers</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-4xl mx-auto">
<!-- Voice Basic -->
<div class="pricing-card bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<i class="fas fa-microphone text-2xl text-[#5865F2] mr-2"></i>
<h3 class="text-xl font-bold">Voice Basic</h3>
</div>
<p class="text-gray-600 mb-6">For small voice communities</p>
<div class="mb-6">
<span class="text-4xl font-bold">$5</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>50 Slots</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Low Latency</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Basic DDoS Protection</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times text-red-400 mr-2"></i>
<span>No Custom Domain</span>
</li>
</ul>
<button class="w-full bg-gray-200 text-gray-800 py-3 rounded-md font-medium hover:bg-gray-300 transition">Get Started</button>
</div>
<!-- Voice Premium -->
<div class="pricing-card popular-plan discord-popular-plan bg-white p-8 rounded-xl shadow-lg relative">
<div class="popular-badge discord-popular-badge">BEST VALUE</div>
<div class="flex items-center mb-4">
<i class="fas fa-microphone-alt text-2xl text-[#5865F2] mr-2"></i>
<h3 class="text-xl font-bold">Voice Premium</h3>
</div>
<p class="text-gray-600 mb-6">For professional voice servers</p>
<div class="mb-6">
<span class="text-4xl font-bold">$12</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>200 Slots</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Ultra Low Latency</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Advanced DDoS Protection</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Custom Domain</span>
</li>
</ul>
<button class="w-full bg-[#5865F2] text-white py-3 rounded-md font-medium hover:bg-[#4752C4] transition">Get Started</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Server Status -->
<section class="py-20 bg-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-16">Server Status</h2>
<div class="max-w-4xl mx-auto bg-gray-50 rounded-xl overflow-hidden shadow-md">
<div class="grid grid-cols-1 md:grid-cols-3 divide-y md:divide-y-0 md:divide-x divide-gray-200">
<!-- Server 1 -->
<div class="p-6">
<div class="flex items-center justify-between mb-4">
<h3 class="font-bold">US-West</h3>
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">Online</span>
</div>
<div class="flex items-center justify-between text-sm text-gray-600">
<span>Players: 24/50</span>
<span>Ping: 32ms</span>
</div>
</div>
<!-- Server 2 -->
<div class="p-6">
<div class="flex items-center justify-between mb-4">
<h3 class="font-bold">EU-Central</h3>
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">Online</span>
</div>
<div class="flex items-center justify-between text-sm text-gray-600">
<span>Players: 18/50</span>
<span>Ping: 45ms</span>
</div>
</div>
<!-- Server 3 -->
<div class="p-6">
<div class="flex items-center justify-between mb-4">
<h3 class="font-bold">Asia-East</h3>
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">Online</span>
</div>
<div class="flex items-center justify-between text-sm text-gray-600">
<span>Players: 12/50</span>
<span>Ping: 78ms</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Discord CTA Section -->
<section class="discord-gradient-bg text-white py-20">
<div class="container mx-auto px-6 text-center">
<div class="max-w-3xl mx-auto">
<i class="fab fa-discord text-6xl mb-6"></i>
<h2 class="text-3xl md:text-4xl font-bold mb-6">Need a Discord Bot or Voice Server?</h2>
<p class="text-xl mb-10">Host your Discord bot or create a dedicated voice server with ultra-low latency and premium quality.</p>
<button class="bg-white text-[#5865F2] px-8 py-4 rounded-md font-bold text-lg hover:bg-gray-100 transition">Get Discord Hosting</button>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-16">What Our Customers Say</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"MineHost has been amazing for our SMP server. The performance is incredible and the support team is always helpful when we need assistance."</p>
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-gray-300 mr-4 overflow-hidden">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="User" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Alex K.</h4>
<p class="text-gray-500 text-sm">Server Owner</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"The Discord bot hosting is flawless. My music bot runs 24/7 without any issues and the support helped me set up everything perfectly."</p>
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-gray-300 mr-4 overflow-hidden">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="User" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Sarah M.</h4>
<p class="text-gray-500 text-sm">Discord Admin</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"The voice servers are game-changing for our community. Crystal clear quality and no lag during our gaming sessions."</p>
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-gray-300 mr-4 overflow-hidden">
<img src="https://randomuser.me/api/portraits/men/67.jpg" alt="User" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">James T.</h4>
<p class="text-gray-500 text-sm">Community Leader</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="gradient-bg text-white py-20">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Start Your Server?</h2>
<p class="text-xl mb-10 max-w-2xl mx-auto">Join thousands of satisfied customers and get your server up and running in minutes.</p>
<button class="bg-white text-blue-600 px-8 py-4 rounded-md font-bold text-lg hover:bg-gray-100 transition">Get Started Now</button>
</div>
</section>
<!-- Footer -->
<footer id="support" class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<!-- Column 1 -->
<div>
<div class="flex items-center space-x-2 mb-4">
<i class="fas fa-server text-2xl"></i>
<span class="text-xl font-bold">MineHost</span>
</div>
<p class="text-gray-400">Premium hosting for Minecraft and Discord servers with 24/7 support.</p>
</div>
<!-- Column 2 -->
<div>
<h3 class="text-lg font-bold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Home</a></li>
<li><a href="#pricing" class="text-gray-400 hover:text-white transition">Pricing</a></li>
<li><a href="#features" class="text-gray-400 hover:text-white transition">Features</a></li>
<li><a href="#support" class="text-gray-400 hover:text-white transition">Support</a></li>
</ul>
</div>
<!-- Column 3 -->
<div>
<h3 class="text-lg font-bold mb-4">Support</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Knowledge Base</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Community</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>
</ul>
</div>
<!-- Column 4 -->
<div>
<h3 class="text-lg font-bold mb-4">Connect With Us</h3>
<div class="flex space-x-4 mb-4">
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-blue-600 transition">
<i class="fab fa-discord"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-blue-400 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-red-600 transition">
<i class="fab fa-youtube"></i>
</a>
</div>
<p class="text-gray-400">support@minehost.com</p>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 MineHost. All rights reserved.</p>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Tab switching functionality
const minecraftTab = document.getElementById('minecraft-tab');
const discordTab = document.getElementById('discord-tab');
const minecraftPricing = document.getElementById('minecraft-pricing');
const discordPricing = document.getElementById('discord-pricing');
minecraftTab.addEventListener('click', function() {
minecraftTab.classList.add('active');
discordTab.classList.remove('active');
discordTab.classList.remove('bg-[#5865F2]');
minecraftPricing.classList.remove('hidden');
discordPricing.classList.add('hidden');
});
discordTab.addEventListener('click', function() {
discordTab.classList.add('active', 'discord-tab-button');
minecraftTab.classList.remove('active');
minecraftPricing.classList.add('hidden');
discordPricing.classList.remove('hidden');
});
// Pricing card hover effects
const pricingCards = document.querySelectorAll('.pricing-card');
pricingCards.forEach(card => {
card.addEventListener('mouseenter', () => {
card.classList.add('shadow-lg');
});
card.addEventListener('mouseleave', () => {
card.classList.remove('shadow-lg');
});
});
console.log('MineHost - Premium Minecraft & Discord Server Hosting');
});
</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=Hanoxbh/minehost2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |