support-it / index.html
nobdistrib's picture
tu peux remplacer le fonds du cadre ou se trouve le " 24/7 Expert IT Support When You Need It..." par une video - Initial Deployment
67a2a79 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TechAssist Pro | 24/7 IT Support Hotline</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, #10b981 0%, #059669 100%);
}
.tech-icon {
transition: all 0.3s ease;
}
.tech-icon:hover {
transform: translateY(-5px);
}
.support-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);
}
.pulse-animation {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}
70% {
transform: scale(1);
box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
}
100% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
}
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Header -->
<header class="bg-blue-900 text-white">
<div class="container mx-auto px-4 py-6">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-headset text-3xl"></i>
<h1 class="text-2xl font-bold">TechAssist Pro</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="hover:text-blue-200 font-medium">Home</a>
<a href="#" class="hover:text-blue-200 font-medium">Services</a>
<a href="#" class="hover:text-blue-200 font-medium">Pricing</a>
<a href="#" class="hover:text-blue-200 font-medium">About</a>
<a href="#" class="hover:text-blue-200 font-medium">Contact</a>
</nav>
<div class="flex items-center space-x-4">
<button class="bg-white text-emerald-600 px-4 py-2 rounded-full font-medium hover:bg-emerald-50 transition">Login</button>
<button class="md:hidden text-2xl" id="mobile-menu-button">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile Menu -->
<div class="hidden md:hidden bg-blue-900 py-4" id="mobile-menu">
<div class="container mx-auto px-4 flex flex-col space-y-3">
<a href="#" class="text-white hover:text-blue-200">Home</a>
<a href="#" class="text-white hover:text-blue-200">Services</a>
<a href="#" class="text-white hover:text-blue-200">Pricing</a>
<a href="#" class="text-white hover:text-blue-200">About</a>
<a href="#" class="text-white hover:text-blue-200">Contact</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="relative overflow-hidden text-white py-16 md:py-24">
<video autoplay muted loop playsinline class="absolute inset-0 w-full h-full object-cover">
<source src="https://assets.mixkit.co/videos/preview/mixkit-circuit-board-technology-animated-background-252-large.mp4" type="video/mp4">
</video>
<div class="absolute inset-0 bg-black opacity-50"></div>
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center relative z-10">
<div class="md:w-full mb-10 md:mb-0 text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6">24/7 Expert IT Support When You Need It</h1>
<p class="text-xl mb-8 text-white">Instant access to certified IT professionals for troubleshooting, software help, hardware issues, and more.</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-emerald-600 px-6 py-3 rounded-full font-bold hover:bg-emerald-50 transition flex items-center justify-center">
<i class="fas fa-phone-alt mr-2"></i> Call Now
</button>
<button class="bg-transparent border-2 border-white text-white px-6 py-3 rounded-full font-bold hover:bg-blue-700 transition flex items-center justify-center">
<i class="fas fa-comment-alt mr-2"></i> Chat Support
</button>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="bg-gray-50 py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 text-center">
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="text-4xl font-bold text-emerald-600 mb-2">24/7</div>
<div class="text-gray-600">Availability</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="text-4xl font-bold text-blue-600 mb-2">98%</div>
<div class="text-gray-600">Satisfaction Rate</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="text-4xl font-bold text-blue-600 mb-2">5 min</div>
<div class="text-gray-600">Avg. Response Time</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="text-4xl font-bold text-blue-600 mb-2">500+</div>
<div class="text-gray-600">Certified Experts</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Our IT Support Services</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Comprehensive technical support for all your IT needs, from simple troubleshooting to complex system configurations.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="support-card bg-gray-50 p-8 rounded-xl transition duration-300">
<div class="tech-icon bg-emerald-100 text-emerald-600 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-laptop-code text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Software Support</h3>
<p class="text-gray-600 mb-4">Installation, configuration, troubleshooting for all major operating systems and applications.</p>
<ul class="space-y-2 text-gray-600">
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> OS Troubleshooting</li>
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> Software Installation</li>
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> Virus Removal</li>
</ul>
</div>
<!-- Service 2 -->
<div class="support-card bg-gray-50 p-8 rounded-xl transition duration-300">
<div class="tech-icon bg-blue-100 text-blue-600 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-server text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Hardware Support</h3>
<p class="text-gray-600 mb-4">Diagnose and troubleshoot hardware issues with computers, printers, and peripherals.</p>
<ul class="space-y-2 text-gray-600">
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> Component Diagnostics</li>
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> Driver Updates</li>
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> Hardware Recommendations</li>
</ul>
</div>
<!-- Service 3 -->
<div class="support-card bg-gray-50 p-8 rounded-xl transition duration-300">
<div class="tech-icon bg-blue-100 text-blue-600 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-network-wired text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Network Support</h3>
<p class="text-gray-600 mb-4">Setup, configuration and troubleshooting for home and office networks.</p>
<ul class="space-y-2 text-gray-600">
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> WiFi Configuration</li>
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> Router Setup</li>
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> VPN Assistance</li>
</ul>
</div>
</div>
</div>
</section>
<!-- How It Works -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">How TechAssist Pro Works</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Simple steps to get your IT issues resolved quickly and efficiently.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Step 1 -->
<div class="text-center">
<div class="bg-blue-600 text-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6 text-2xl font-bold">1</div>
<h3 class="text-xl font-bold mb-3">Describe Your Issue</h3>
<p class="text-gray-600">Tell us about your technical problem through call, chat, or our support ticket system.</p>
</div>
<!-- Step 2 -->
<div class="text-center">
<div class="bg-blue-600 text-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6 text-2xl font-bold">2</div>
<h3 class="text-xl font-bold mb-3">Connect With an Expert</h3>
<p class="text-gray-600">We'll match you with the best available IT specialist for your specific issue.</p>
</div>
<!-- Step 3 -->
<div class="text-center">
<div class="bg-blue-600 text-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6 text-2xl font-bold">3</div>
<h3 class="text-xl font-bold mb-3">Get It Fixed</h3>
<p class="text-gray-600">Our expert will guide you through the solution or remotely access your system if needed.</p>
</div>
</div>
</div>
</section>
<!-- Call to Action -->
<section class="py-16 bg-blue-900 text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Solve Your IT Problems?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto text-blue-100">Our team of certified IT professionals is standing by to assist you 24 hours a day, 7 days a week.</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 px-8 py-4 rounded-full font-bold hover:bg-blue-50 transition flex items-center justify-center mx-auto sm:mx-0">
<i class="fas fa-phone-alt mr-2"></i> Call Now: 1-800-TECH-PRO
</button>
<button class="bg-transparent border-2 border-white text-white px-8 py-4 rounded-full font-bold hover:bg-blue-700 transition flex items-center justify-center mx-auto sm:mx-0">
<i class="fas fa-comments mr-2"></i> Start Live Chat
</button>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">What Our Clients Say</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Don't just take our word for it - hear from businesses and individuals we've helped.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="text-yellow-400 text-xl">
<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">"TechAssist Pro saved our small business when our server crashed. Their expert had us back online in under an hour. Worth every penny!"</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-gray-500 text-sm">Small Business Owner</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="text-yellow-400 text-xl">
<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">"I was struggling with setting up my home network. The technician was patient, knowledgeable, and solved my issue in minutes."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Michael Thompson</h4>
<p class="text-gray-500 text-sm">Home User</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="text-yellow-400 text-xl">
<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">"Our company uses TechAssist Pro for all our IT support needs. They're faster and more cost-effective than hiring in-house staff."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Lisa M." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Lisa Martinez</h4>
<p class="text-gray-500 text-sm">IT Manager</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-blue-900 text-white pt-16 pb-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-12 mb-12">
<!-- About -->
<div>
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-headset mr-2"></i> TechAssist Pro
</h3>
<p class="text-gray-400 mb-4">Your 24/7 IT support solution for businesses and individuals.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
</div>
</div>
<!-- Quick Links -->
<div>
<h3 class="text-xl font-bold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Home</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Services</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<!-- Services -->
<div>
<h3 class="text-xl font-bold mb-4">Services</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Software Support</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Hardware Support</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Network Support</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Remote Assistance</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Business IT Solutions</a></li>
</ul>
</div>
<!-- Contact -->
<div>
<h3 class="text-xl font-bold mb-4">Contact Us</h3>
<ul class="space-y-2 text-gray-400">
<li class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-3"></i>
<span>123 Tech Street, Silicon Valley, CA 94000</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone-alt mr-3"></i>
<span>1-800-TECH-PRO</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope mr-3"></i>
<span>support@techassistpro.com</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 TechAssist Pro. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white">Sitemap</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');
});
// Call button animation
const callButton = document.querySelector('.pulse-animation');
setInterval(() => {
callButton.classList.toggle('pulse-animation');
setTimeout(() => {
callButton.classList.toggle('pulse-animation');
}, 100);
}, 5000);
</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=nobdistrib/support-it" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>