host / index.html
docto41's picture
Add 3 files
976804c verified
<!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>