-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservermaintance.php
27 lines (24 loc) · 1.16 KB
/
servermaintance.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Maintenance</title>
<!-- Tailwind CSS -->
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<!-- Animate.css for Animations -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
</head>
<body class="bg-gray-100 flex items-center justify-center min-h-screen">
<!-- Maintenance Message -->
<div class="text-center p-6 max-w-lg mx-auto bg-white shadow-lg rounded-lg animate__animated animate__fadeIn">
<h1 class="text-4xl font-bold text-gray-800 mb-4 animate__animated animate__pulse animate__infinite">⚙️ Maintenance Mode ⚙️</h1>
<p class="text-lg text-gray-600 mb-6">
Website is temporarily closed for maintenance. We really appreciate your patience.
</p>
<div class="flex justify-center mt-8">
<div class="w-16 h-16 border-t-4 border-b-4 border-blue-500 rounded-full animate-spin"></div>
</div>
</div>
</body>
</html>