under-maintenance / index.html
alphonse86's picture
Add 2 files
3dececa verified
Raw
History Blame Contribute Delete
7.64 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Under Maintenance | We'll Be Back Soon!</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 float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.floating {
animation: float 6s ease-in-out infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.pulse {
animation: pulse 2s infinite;
}
.progress-bar {
height: 6px;
width: 100%;
background-color: #e5e7eb;
border-radius: 3px;
overflow: hidden;
}
.progress {
height: 100%;
width: 65%;
background-color: #3b82f6;
border-radius: 3px;
animation: progress-animation 2s ease-in-out infinite alternate;
}
@keyframes progress-animation {
0% { width: 65%; }
100% { width: 70%; }
}
</style>
</head>
<body class="bg-gradient-to-br from-blue-50 to-indigo-100 min-h-screen flex items-center justify-center p-4">
<div class="max-w-3xl w-full bg-white rounded-2xl shadow-xl overflow-hidden">
<div class="md:flex">
<div class="md:w-1/2 p-8 md:p-12 flex flex-col justify-center">
<div class="text-center md:text-left">
<div class="inline-flex items-center justify-center w-16 h-16 bg-blue-100 rounded-full mb-6">
<i class="fas fa-tools text-blue-500 text-2xl"></i>
</div>
<h1 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Under Maintenance</h1>
<p class="text-gray-600 mb-6 leading-relaxed">
We're currently working hard to improve your experience. Our team is performing some scheduled maintenance.
We'll be back online shortly!
</p>
<div class="mb-8">
<div class="flex justify-between text-sm text-gray-500 mb-1">
<span>Progress</span>
<span>65%</span>
</div>
<div class="progress-bar">
<div class="progress"></div>
</div>
</div>
<div class="flex flex-col sm:flex-row gap-3">
<button class="px-6 py-3 bg-blue-600 hover:bg-blue-700 text-white rounded-lg font-medium transition-all flex items-center justify-center gap-2">
<i class="fas fa-home"></i> Return Home
</button>
<button class="px-6 py-3 border border-gray-300 hover:bg-gray-50 text-gray-700 rounded-lg font-medium transition-all flex items-center justify-center gap-2">
<i class="fas fa-envelope"></i> Contact Us
</button>
</div>
<div class="mt-8 pt-6 border-t border-gray-100">
<p class="text-sm text-gray-500 flex items-center justify-center md:justify-start gap-2">
<i class="fas fa-clock"></i> Estimated time remaining: 2 hours
</p>
</div>
</div>
</div>
<div class="md:w-1/2 bg-gradient-to-br from-blue-100 to-indigo-200 flex items-center justify-center p-8 relative overflow-hidden">
<div class="absolute top-0 right-0 w-32 h-32 bg-blue-200 rounded-full -mr-16 -mt-16 opacity-50"></div>
<div class="absolute bottom-0 left-0 w-32 h-32 bg-indigo-200 rounded-full -ml-16 -mb-16 opacity-50"></div>
<div class="relative z-10 text-center">
<img src="https://images.unsplash.com/photo-1517849845537-4d257902454a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=735&q=80"
alt="Cute dog with construction hat"
class="w-full h-auto max-h-80 object-contain rounded-lg floating shadow-lg">
<p class="mt-4 text-sm text-indigo-700 font-medium">
<i class="fas fa-paw mr-1"></i> Our construction pup is helping with the upgrades!
</p>
</div>
</div>
</div>
<div class="bg-gray-50 px-8 py-4 flex flex-col md:flex-row items-center justify-between">
<p class="text-sm text-gray-500 mb-2 md:mb-0">
<i class="fas fa-info-circle mr-1"></i> Last updated: <span id="current-time"></span>
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-blue-500 transition-colors">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-pink-500 transition-colors">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-blue-700 transition-colors">
<i class="fab fa-facebook"></i>
</a>
</div>
</div>
</div>
<script>
// Update current time
function updateTime() {
const now = new Date();
const options = {
weekday: 'long',
year: 'numeric',
month: 'long',
day: 'numeric',
hour: '2-digit',
minute: '2-digit'
};
document.getElementById('current-time').textContent = now.toLocaleDateString('en-US', options);
}
updateTime();
setInterval(updateTime, 60000); // Update every minute
// Add some interactive elements
document.addEventListener('DOMContentLoaded', function() {
const buttons = document.querySelectorAll('button');
buttons.forEach(button => {
button.addEventListener('click', function() {
this.classList.add('pulse');
setTimeout(() => {
this.classList.remove('pulse');
}, 2000);
});
});
});
</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=alphonse86/under-maintenance" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>