advert / index.html
MagnusM76's picture
undefined - Initial Deployment
d3afacd verified
Raw
History Blame Contribute Delete
13.3 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Maintenance Services Advertisement</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>
@keyframes flash {
0%, 50%, 100% { opacity: 1; }
25%, 75% { opacity: 0.5; }
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.flashing {
animation: flash 2s infinite;
}
.pulse {
animation: pulse 2s infinite;
}
.gradient-bg {
background: linear-gradient(135deg, #3b82f6 0%, #10b981 50%, #f59e0b 100%);
}
.service-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);
}
</style>
</head>
<body class="bg-gray-100 font-sans">
<div class="container mx-auto px-4 py-8">
<!-- Header with flashing effect -->
<div class="gradient-bg rounded-xl p-6 mb-8 text-center flashing">
<h1 class="text-4xl md:text-5xl font-bold text-white mb-4">🚧 DISTINCT SOLUTIONS & TECHNICAL SERVICES 🚧</h1>
<p class="text-xl text-white mb-4">24/7 Emergency Repairs • Preventive Maintenance • Expert Technicians</p>
<div class="flex justify-center">
<button id="ctaButton" class="bg-white text-blue-600 font-bold py-3 px-8 rounded-full text-lg pulse hover:bg-gray-100 transition duration-300">
CALL NOW: (+971) 58 559 1476
</button>
</div>
</div>
<!-- Services Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-12">
<!-- Service Card 1 -->
<div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
<div class="bg-blue-100 p-4 text-center">
<i class="fas fa-tools text-blue-600 text-4xl mb-3"></i>
<h3 class="text-xl font-bold text-gray-800">HVAC Maintenance</h3>
</div>
<div class="p-4">
<p class="text-gray-600 mb-4">Regular tune-ups to keep your cooling systems running efficiently.</p>
</div>
</div>
<!-- Service Card 2 -->
<div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
<div class="bg-green-100 p-4 text-center">
<i class="fas fa-plug text-green-600 text-4xl mb-3"></i>
<h3 class="text-xl font-bold text-gray-800">Electrical Repairs</h3>
</div>
<div class="p-4">
<p class="text-gray-600 mb-4">Safe and reliable solutions for all your electrical needs.</p>
</div>
</div>
<!-- Service Card 3 -->
<div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
<div class="bg-yellow-100 p-4 text-center">
<i class="fas fa-faucet text-yellow-600 text-4xl mb-3"></i>
<h3 class="text-xl font-bold text-gray-800">Plumbing Services</h3>
</div>
<div class="p-4">
<p class="text-gray-600 mb-4">From leaky faucets to complete pipe replacements.</p>
</div>
</div>
<!-- Service Card 4 -->
<div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300">
<div class="bg-purple-100 p-4 text-center">
<i class="fas fa-home text-purple-600 text-4xl mb-3"></i>
<h3 class="text-xl font-bold text-gray-800">General Maintenance</h3>
</div>
<div class="p-4">
<p class="text-gray-600 mb-4">Complete property maintenance packages for homes and businesses.</p>
</div>
</div>
</div>
<!-- Testimonials -->
<div class="bg-white rounded-xl shadow-md p-6 mb-8">
<h2 class="text-2xl font-bold text-center mb-6 text-gray-800">What Our Customers Say</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-gray-50 p-4 rounded-lg">
<div class="flex items-center mb-3">
<div class="text-yellow-400">
<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-3">"Magnus is very skilled and meticulous handyman. He is the only handyman in Dubai I have truly had confidence in. There's no suprises in his pricing or his completion of projects. Highly recommend to all my friends."</p>
<p class="font-semibold text-gray-800">- Renee.S.</p>
</div>
<div class="bg-gray-50 p-4 rounded-lg">
<div class="flex items-center mb-3">
<div class="text-yellow-400">
<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-3">"It was such a pleasure working with Magnus and his team. They delivered Excetional service and have intricate knowledge in various fields. We cannot recommend them highly enough."</p>
<p class="font-semibold text-gray-800">- Marnus. T</p>
</div>
<div class="bg-gray-50 p-4 rounded-lg">
<div class="flex items-center mb-3">
<div class="text-yellow-400">
<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-3">"Pure dedication and commitment to his passion! Magnus came in determined more than ever to fix our jacuzzi. It had been tinkered on 1 to many times by other people claiming to know what they were doing. Magnus went above and beyond and we truly greatful for the sweat and commitment in the DXB heat!"</p>
<p class="font-semibold text-gray-800">- Blanche. M</p>
</div>
</div>
</div>
<!-- Special Offer Banner -->
<div id="specialOffer" class="bg-red-600 text-white rounded-xl p-6 mb-8 text-center flashing">
<h2 class="text-2xl md:text-3xl font-bold mb-3">🔥 LIMITED TIME OFFER! 🔥</h2>
<p class="text-xl mb-4">15% OFF YOUR FIRST SERVICE WHEN YOU CALL TODAY!</p>
<button class="bg-white text-red-600 font-bold py-2 px-6 rounded-full hover:bg-gray-100 transition duration-300">
CLAIM YOUR DISCOUNT
</button>
</div>
<!-- Contact Form -->
<div class="bg-white rounded-xl shadow-md p-6">
<h2 class="text-2xl font-bold text-center mb-6 text-gray-800">Request a Service Call</h2>
<form class="max-w-lg mx-auto">
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="name">Name</label>
<input class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" type="text" id="name" placeholder="Your Name">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="phone">Phone</label>
<input class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" type="tel" id="phone" placeholder="(+971) 52 123 4567">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="service">Service Needed</label>
<select class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" id="service">
<option>Select a service</option>
<option>HVAC Maintenance</option>
<option>Electrical Repairs</option>
<option>Plumbing Services</option>
<option>General Maintenance</option>
<option>Shade Nets</option>
<option>Emergency Service</option>
<option>Inspection</option>
<option>AMC</option>
</select>
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2" for="message">Message</label>
<textarea class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" id="message" rows="3" placeholder="Describe your maintenance needs"></textarea>
</div>
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-4 rounded-md transition duration-300">
REQUEST SERVICE NOW
</button>
</form>
</div>
<!-- Footer -->
<footer class="mt-12 text-center text-gray-600">
<div class="flex justify-center space-x-6 mb-4">
<a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-blue-400 hover:text-blue-600"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-pink-600 hover:text-pink-800"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-900 hover:text-gray-700"><i class="fab fa-linkedin-in"></i></a>
</div>
<p>© 2024 Distinct Solutions and Technical Services. All rights reserved.</p>
<p class="mt-2">Serving the community with quality repairs since 2024</p>
</footer>
</div>
<script>
// Make the CTA button flash in a different pattern
const ctaButton = document.getElementById('ctaButton');
const specialOffer = document.getElementById('specialOffer');
setInterval(() => {
ctaButton.classList.toggle('bg-white');
ctaButton.classList.toggle('bg-yellow-300');
}, 1000);
// Change special offer color periodically
const colors = ['bg-red-600', 'bg-blue-600', 'bg-green-600', 'bg-purple-600'];
let currentColorIndex = 0;
setInterval(() => {
// Remove all color classes
colors.forEach(color => specialOffer.classList.remove(color));
// Add the next color
currentColorIndex = (currentColorIndex + 1) % colors.length;
specialOffer.classList.add(colors[currentColorIndex]);
}, 3000);
// Add click effects
document.querySelectorAll('button').forEach(button => {
button.addEventListener('click', function() {
this.classList.add('transform', 'scale-95');
setTimeout(() => {
this.classList.remove('transform', 'scale-95');
}, 300);
// For demo purposes - show an alert
if(this.textContent.includes('CALL NOW') || this.textContent.includes('CLAIM')) {
alert('Thank you for your interest! Our team will contact you shortly.');
}
});
});
</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://deepsite.hf.co/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://deepsite.hf.co" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://deepsite.hf.co?remix=MagnusM76/advert" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>