File size: 36,854 Bytes
976804c |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Peyton - Premium Hosting & Cloud Services</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: #f8fafc;
}
.gradient-bg {
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}
.card-hover: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: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
margin-bottom: 20px;
}
.pricing-card {
transition: all 0.3s ease;
}
.pricing-card:hover {
transform: scale(1.03);
}
.pricing-card.popular {
border: 2px solid #2563eb;
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body>
<!-- Top Bar -->
<div class="bg-gray-900 text-white py-2 px-4 text-sm">
<div class="container mx-auto flex justify-between items-center">
<div class="flex space-x-4">
<div class="flex items-center">
<i class="fas fa-phone-alt mr-2 text-blue-400"></i>
<span>+1 (555) 123-4567</span>
</div>
<div class="flex items-center">
<i class="fas fa-envelope mr-2 text-blue-400"></i>
<span>support@peyton.com</span>
</div>
</div>
<div class="flex space-x-4">
<a href="#" class="hover:text-blue-400 transition"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="hover:text-blue-400 transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="hover:text-blue-400 transition"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="hover:text-blue-400 transition"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="container mx-auto px-4 py-4">
<div class="flex justify-between items-center">
<div class="flex items-center">
<img src="https://via.placeholder.com/40x40" alt="Peyton Logo" class="h-10 mr-3">
<span class="text-2xl font-bold text-gray-800">Peyton</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="text-blue-600 font-medium">Home</a>
<a href="#" class="text-gray-600 hover:text-blue-600 transition">Hosting</a>
<a href="#" class="text-gray-600 hover:text-blue-600 transition">Cloud</a>
<a href="#" class="text-gray-600 hover:text-blue-600 transition">Domains</a>
<a href="#" class="text-gray-600 hover:text-blue-600 transition">Features</a>
<a href="#" class="text-gray-600 hover:text-blue-600 transition">Support</a>
</div>
<div class="hidden md:block">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-lg transition">Get Started</button>
</div>
<button class="md:hidden text-gray-600">
<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-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Premium Cloud Hosting Solutions</h1>
<p class="text-xl mb-8 text-blue-100">Experience lightning-fast performance with our cutting-edge cloud infrastructure. 99.9% uptime guaranteed.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-blue-600 hover:bg-gray-100 px-8 py-3 rounded-lg font-medium transition shadow-lg">Get Started Now</button>
<button class="border-2 border-white text-white hover:bg-white hover:text-blue-600 px-8 py-3 rounded-lg font-medium transition">Learn More</button>
</div>
<div class="mt-8 flex items-center">
<div class="flex -space-x-2">
<img src="https://via.placeholder.com/40x40" alt="Client" class="w-10 h-10 rounded-full border-2 border-white">
<img src="https://via.placeholder.com/40x40" alt="Client" class="w-10 h-10 rounded-full border-2 border-white">
<img src="https://via.placeholder.com/40x40" alt="Client" class="w-10 h-10 rounded-full border-2 border-white">
</div>
<div class="ml-4">
<p class="text-sm text-blue-100">Trusted by 10,000+ customers worldwide</p>
<div class="flex items-center">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<span class="ml-2 text-sm">4.9/5.0</span>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 relative">
<img src="https://via.placeholder.com/600x500" alt="Cloud Hosting" class="rounded-lg shadow-2xl floating">
<div class="absolute -bottom-5 -left-5 bg-white p-4 rounded-lg shadow-lg hidden md:block">
<div class="flex items-center">
<div class="bg-blue-100 p-3 rounded-lg mr-3">
<i class="fas fa-shield-alt text-blue-600 text-xl"></i>
</div>
<div>
<p class="text-sm text-gray-500">Security</p>
<p class="font-bold">100% Secure</p>
</div>
</div>
</div>
<div class="absolute -top-5 -right-5 bg-white p-4 rounded-lg shadow-lg hidden md:block">
<div class="flex items-center">
<div class="bg-green-100 p-3 rounded-lg mr-3">
<i class="fas fa-bolt text-green-600 text-xl"></i>
</div>
<div>
<p class="text-sm text-gray-500">Uptime</p>
<p class="font-bold">99.9% Guaranteed</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Trusted By -->
<section class="bg-gray-50 py-12">
<div class="container mx-auto px-4">
<p class="text-center text-gray-500 mb-8">TRUSTED BY INDUSTRY LEADERS</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<img src="https://via.placeholder.com/120x40" alt="Company Logo" class="h-8 opacity-60 hover:opacity-100 transition">
<img src="https://via.placeholder.com/120x40" alt="Company Logo" class="h-8 opacity-60 hover:opacity-100 transition">
<img src="https://via.placeholder.com/120x40" alt="Company Logo" class="h-8 opacity-60 hover:opacity-100 transition">
<img src="https://via.placeholder.com/120x40" alt="Company Logo" class="h-8 opacity-60 hover:opacity-100 transition">
<img src="https://via.placeholder.com/120x40" alt="Company Logo" class="h-8 opacity-60 hover:opacity-100 transition">
</div>
</div>
</section>
<!-- Features -->
<section class="py-20">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<span class="text-blue-600 font-medium">WHY CHOOSE US</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mt-2 mb-4">Powerful Features For Your Business</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Our cloud hosting platform provides everything you need to launch and grow your online presence with confidence.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-white p-8 rounded-xl shadow-md card-hover transition">
<div class="feature-icon bg-blue-100 text-blue-600">
<i class="fas fa-server text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">High Performance</h3>
<p class="text-gray-600">Our SSD-powered servers deliver lightning-fast load times for your websites and applications.</p>
</div>
<!-- Feature 2 -->
<div class="bg-white p-8 rounded-xl shadow-md card-hover transition">
<div class="feature-icon bg-green-100 text-green-600">
<i class="fas fa-shield-alt text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Advanced Security</h3>
<p class="text-gray-600">Enterprise-grade security with DDoS protection, firewalls, and free SSL certificates.</p>
</div>
<!-- Feature 3 -->
<div class="bg-white p-8 rounded-xl shadow-md card-hover transition">
<div class="feature-icon bg-purple-100 text-purple-600">
<i class="fas fa-cloud text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Cloud Technology</h3>
<p class="text-gray-600">Scalable cloud infrastructure that grows with your business needs.</p>
</div>
<!-- Feature 4 -->
<div class="bg-white p-8 rounded-xl shadow-md card-hover transition">
<div class="feature-icon bg-yellow-100 text-yellow-600">
<i class="fas fa-headset text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">24/7 Support</h3>
<p class="text-gray-600">Our expert support team is available round the clock to assist you.</p>
</div>
<!-- Feature 5 -->
<div class="bg-white p-8 rounded-xl shadow-md card-hover transition">
<div class="feature-icon bg-red-100 text-red-600">
<i class="fas fa-database text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Daily Backups</h3>
<p class="text-gray-600">Automatic daily backups ensure your data is always safe and recoverable.</p>
</div>
<!-- Feature 6 -->
<div class="bg-white p-8 rounded-xl shadow-md card-hover transition">
<div class="feature-icon bg-indigo-100 text-indigo-600">
<i class="fas fa-rocket text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Easy Migration</h3>
<p class="text-gray-600">Free website migration service to move your existing sites to our platform.</p>
</div>
</div>
</div>
</section>
<!-- Hosting Plans -->
<section class="bg-gray-50 py-20">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<span class="text-blue-600 font-medium">PRICING PLANS</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mt-2 mb-4">Flexible Hosting Solutions</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Choose the perfect plan for your needs with our transparent pricing.</p>
</div>
<div class="flex justify-center mb-8">
<div class="inline-flex rounded-md shadow-sm">
<button class="px-6 py-3 text-sm font-medium rounded-l-lg bg-blue-600 text-white">
Monthly
</button>
<button class="px-6 py-3 text-sm font-medium rounded-r-lg bg-white text-gray-700 hover:bg-gray-50">
Yearly (Save 20%)
</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Basic Plan -->
<div class="bg-white p-8 rounded-xl shadow-md pricing-card">
<div class="mb-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Starter</h3>
<p class="text-gray-600">Perfect for personal websites and blogs</p>
</div>
<div class="mb-6">
<span class="text-4xl font-bold text-gray-800">$4.99</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>1 Website</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>10GB SSD Storage</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Unmetered Bandwidth</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Free SSL Certificate</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>24/7 Support</span>
</li>
</ul>
<button class="w-full py-3 px-4 border border-gray-300 rounded-lg text-gray-700 hover:bg-gray-50 transition">
Get Started
</button>
</div>
<!-- Popular Plan -->
<div class="bg-white p-8 rounded-xl shadow-xl pricing-card popular relative">
<div class="absolute top-0 right-0 bg-blue-600 text-white px-3 py-1 rounded-bl-lg rounded-tr-lg text-xs font-medium">
MOST POPULAR
</div>
<div class="mb-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Business</h3>
<p class="text-gray-600">Ideal for growing businesses</p>
</div>
<div class="mb-6">
<span class="text-4xl font-bold text-gray-800">$9.99</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Unlimited Websites</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>50GB SSD Storage</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Unmetered Bandwidth</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Free SSL Certificate</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Free Domain (1 year)</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Daily Backups</span>
</li>
</ul>
<button class="w-full py-3 px-4 bg-blue-600 rounded-lg text-white hover:bg-blue-700 transition">
Get Started
</button>
</div>
<!-- Enterprise Plan -->
<div class="bg-white p-8 rounded-xl shadow-md pricing-card">
<div class="mb-6">
<h3 class="text-xl font-bold text-gray-800 mb-2">Enterprise</h3>
<p class="text-gray-600">For high-traffic websites</p>
</div>
<div class="mb-6">
<span class="text-4xl font-bold text-gray-800">$19.99</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Unlimited Websites</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>100GB SSD Storage</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Unmetered Bandwidth</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Free SSL Certificate</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Free Domain (1 year)</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Daily Backups</span>
</li>
<li class="flex items-center text-gray-600">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Dedicated Resources</span>
</li>
</ul>
<button class="w-full py-3 px-4 border border-gray-300 rounded-lg text-gray-700 hover:bg-gray-50 transition">
Get Started
</button>
</div>
</div>
</div>
</section>
<!-- Cloud Services -->
<section class="py-20">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<img src="https://via.placeholder.com/600x500" alt="Cloud Services" class="rounded-lg shadow-xl">
</div>
<div class="md:w-1/2 md:pl-12">
<span class="text-blue-600 font-medium">CLOUD SERVICES</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mt-2 mb-6">Scalable Cloud Infrastructure</h2>
<p class="text-gray-600 mb-8">Our cloud platform provides the flexibility and power your business needs to scale effortlessly.</p>
<div class="space-y-6">
<div class="flex">
<div class="mr-6">
<div class="bg-blue-100 p-3 rounded-lg">
<i class="fas fa-cloud-upload-alt text-blue-600 text-xl"></i>
</div>
</div>
<div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Cloud Hosting</h3>
<p class="text-gray-600">High-performance cloud hosting with automatic scaling and load balancing.</p>
</div>
</div>
<div class="flex">
<div class="mr-6">
<div class="bg-green-100 p-3 rounded-lg">
<i class="fas fa-database text-green-600 text-xl"></i>
</div>
</div>
<div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Cloud Storage</h3>
<p class="text-gray-600">Secure and redundant cloud storage solutions with easy access from anywhere.</p>
</div>
</div>
<div class="flex">
<div class="mr-6">
<div class="bg-purple-100 p-3 rounded-lg">
<i class="fas fa-server text-purple-600 text-xl"></i>
</div>
</div>
<div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Private Cloud</h3>
<p class="text-gray-600">Dedicated cloud infrastructure for maximum security and performance.</p>
</div>
</div>
</div>
<button class="mt-8 bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-lg font-medium transition shadow-lg">
Explore Cloud Solutions
</button>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="bg-gray-900 text-white py-20">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<span class="text-blue-400 font-medium">TESTIMONIALS</span>
<h2 class="text-3xl md:text-4xl font-bold text-white mt-2 mb-4">What Our Customers Say</h2>
<p class="text-gray-400 max-w-2xl mx-auto">Don't just take our word for it. Here's what our customers have to say about our services.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-800 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="flex -space-x-1">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<p class="text-gray-300 mb-6">"Peyton's hosting services have been a game-changer for our business. The uptime is incredible and their support team is always helpful."</p>
<div class="flex items-center">
<img src="https://via.placeholder.com/50x50" alt="Customer" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-sm text-gray-400">CEO, TechSolutions</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-800 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="flex -space-x-1">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<p class="text-gray-300 mb-6">"We migrated all our websites to Peyton and saw immediate improvements in loading speeds. Their cloud infrastructure is top-notch."</p>
<div class="flex items-center">
<img src="https://via.placeholder.com/50x50" alt="Customer" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Michael Chen</h4>
<p class="text-sm text-gray-400">CTO, DigitalAgency</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-800 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="flex -space-x-1">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<p class="text-gray-300 mb-6">"The security features give me peace of mind, and the automatic backups have saved us multiple times. Highly recommended!"</p>
<div class="flex items-center">
<img src="https://via.placeholder.com/50x50" alt="Customer" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">David Wilson</h4>
<p class="text-sm text-gray-400">Founder, EcommerceStore</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 gradient-bg text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Get Started?</h2>
<p class="text-xl text-blue-100 mb-8 max-w-2xl mx-auto">Join thousands of satisfied customers who trust Peyton for their hosting and cloud needs.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-blue-600 hover:bg-gray-100 px-8 py-3 rounded-lg font-medium transition shadow-lg">Get Started Now</button>
<button class="border-2 border-white text-white hover:bg-white hover:text-blue-600 px-8 py-3 rounded-lg font-medium transition">Contact Sales</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-12 mb-12">
<!-- About -->
<div>
<div class="flex items-center mb-4">
<img src="https://via.placeholder.com/40x40" alt="Peyton Logo" class="h-10 mr-3">
<span class="text-2xl font-bold">Peyton</span>
</div>
<p class="text-gray-400 mb-4">Premium hosting and cloud services with unmatched performance and reliability.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a>
</div>
</div>
<!-- Services -->
<div>
<h3 class="text-lg font-bold mb-6">Services</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">Web Hosting</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Cloud Hosting</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">VPS Hosting</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">WordPress Hosting</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Domain Registration</a></li>
</ul>
</div>
<!-- Support -->
<div>
<h3 class="text-lg font-bold mb-6">Support</h3>
<ul class="space-y-3">
<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">Community Forums</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">24/7 Support</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">System Status</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a></li>
</ul>
</div>
<!-- Contact -->
<div>
<h3 class="text-lg font-bold mb-6">Contact Us</h3>
<ul class="space-y-3 text-gray-400">
<li class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-3 text-blue-400"></i>
<span>123 Cloud Street, San Francisco, CA 94107</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone-alt mr-3 text-blue-400"></i>
<span>+1 (555) 123-4567</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope mr-3 text-blue-400"></i>
<span>support@peyton.com</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 Peyton Hosting. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white transition">Sitemap</a>
</div>
</div>
</div>
</div>
</footer>
<script>
// Simple animation for pricing cards
document.addEventListener('DOMContentLoaded', function() {
const pricingCards = document.querySelectorAll('.pricing-card');
pricingCards.forEach(card => {
card.addEventListener('mouseenter', function() {
this.style.transition = 'all 0.3s ease';
});
card.addEventListener('mouseleave', function() {
this.style.transition = 'all 0.3s ease';
});
});
// Toggle pricing period
const toggleButtons = document.querySelectorAll('.inline-flex button');
toggleButtons.forEach(button => {
button.addEventListener('click', function() {
toggleButtons.forEach(btn => {
btn.classList.remove('bg-blue-600', 'text-white');
btn.classList.add('bg-white', 'text-gray-700', 'hover:bg-gray-50');
});
this.classList.add('bg-blue-600', 'text-white');
this.classList.remove('bg-white', 'text-gray-700', 'hover:bg-gray-50');
// Here you would update the prices displayed
// This is just a placeholder for the functionality
});
});
});
</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=docto41/host" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |