-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path500.html
More file actions
256 lines (246 loc) · 15.2 KB
/
Copy path500.html
File metadata and controls
256 lines (246 loc) · 15.2 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Server Error | FashionHub</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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
.error-illustration {
background-image: url('https://images.unsplash.com/photo-1584824486509-112e4181ff6b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-lg">
<div class="max-w-7xl mx-auto px-4">
<div class="flex justify-between">
<div class="flex space-x-7">
<!-- Logo -->
<div>
<a href="index.html" class="flex items-center py-4 px-2">
<span class="font-semibold text-gray-500 text-2xl">FashionHub</span>
</a>
</div>
<!-- Primary Nav -->
<div class="hidden md:flex items-center space-x-1">
<a href="index.html" class="py-4 px-2 text-gray-500 font-semibold hover:text-green-500 transition duration-300">Home</a>
<a href="men.html" class="py-4 px-2 text-gray-500 font-semibold hover:text-green-500 transition duration-300">Men</a>
<a href="women.html" class="py-4 px-2 text-gray-500 font-semibold hover:text-green-500 transition duration-300">Women</a>
<a href="kids.html" class="py-4 px-2 text-gray-500 font-semibold hover:text-green-500 transition duration-300">Kids</a>
<a href="#" class="py-4 px-2 text-gray-500 font-semibold hover:text-green-500 transition duration-300">Sale</a>
<a href="about.html" class="py-4 px-2 text-gray-500 font-semibold hover:text-green-500 transition duration-300">About</a>
</div>
</div>
<!-- Secondary Nav -->
<div class="hidden md:flex items-center space-x-3">
<a href="#" class="py-2 px-2 text-gray-500 hover:text-green-500 transition duration-300"><i class="fas fa-search"></i></a>
<a href="#" class="py-2 px-2 text-gray-500 hover:text-green-500 transition duration-300"><i class="fas fa-user"></i></a>
<a href="cart.html" class="py-2 px-2 text-gray-500 hover:text-green-500 transition duration-300 relative">
<i class="fas fa-shopping-cart"></i>
<span class="absolute -top-1 -right-1 bg-green-500 text-white text-xs rounded-full h-4 w-4 flex items-center justify-center">3</span>
</a>
</div>
<!-- Mobile menu button and cart icon -->
<div class="md:hidden flex items-center space-x-4">
<a href="cart.html" class="text-green-500 relative">
<i class="fas fa-shopping-cart"></i>
<span class="absolute -top-1 -right-1 bg-green-500 text-white text-xs rounded-full h-4 w-4 flex items-center justify-center">3</span>
</a>
<button class="outline-none mobile-menu-button">
<svg class="w-6 h-6 text-gray-500" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" stroke="currentColor">
<path d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden mobile-menu">
<ul>
<li><a href="index.html" class="block text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Home</a></li>
<li><a href="men.html" class="block text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Men</a></li>
<li><a href="women.html" class="block text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Women</a></li>
<li><a href="kids.html" class="block text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Kids</a></li>
<li><a href="#" class="block text-sm px-2 py-4 hover:bg-green-500 transition duration-300">Sale</a></li>
<li><a href="about.html" class="block text-sm px-2 py-4 hover:bg-green-500 transition duration-300">About</a></li>
</ul>
</div>
</nav>
<!-- 500 Error Content -->
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 md:py-24">
<div class="flex flex-col md:flex-row items-center">
<!-- Text Content -->
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
<div class="flex items-center mb-6">
<div class="bg-red-100 rounded-full p-3 mr-4">
<i class="fas fa-exclamation-triangle text-red-500 text-2xl"></i>
</div>
<span class="text-red-500 font-semibold">SERVER ERROR</span>
</div>
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">500 Internal Server Error</h1>
<h2 class="text-2xl md:text-3xl font-bold text-gray-800 mb-6">Our Fashion Team Is Working On It</h2>
<p class="text-lg text-gray-600 mb-8">
Something went wrong on our end while processing your request.
Our technical team has been notified and is working to fix the issue.
Please try again later or contact our support team if the problem persists.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="index.html" class="bg-green-500 hover:bg-green-600 text-white font-semibold py-3 px-8 rounded-md transition duration-300 text-center pulse">
<i class="fas fa-redo mr-2"></i> Try Again
</a>
<a href="contact.html" class="border border-gray-300 hover:border-green-500 text-gray-700 hover:text-green-500 font-semibold py-3 px-8 rounded-md transition duration-300 text-center">
<i class="fas fa-headset mr-2"></i> Contact Support
</a>
</div>
<div class="mt-8 p-4 bg-gray-100 rounded-lg">
<div class="flex items-start">
<i class="fas fa-info-circle text-green-500 mt-1 mr-3"></i>
<div>
<h4 class="font-semibold text-gray-800 mb-1">In the meantime...</h4>
<p class="text-gray-600 text-sm">
Check out our latest collections on social media or read our fashion blog for style inspiration.
</p>
</div>
</div>
</div>
</div>
<!-- Error Illustration -->
<div class="md:w-1/2 h-96 md:h-auto error-illustration rounded-lg shadow-xl relative overflow-hidden">
<div class="absolute inset-0 bg-black bg-opacity-30 flex items-center justify-center">
<div class="text-center p-6">
<span class="text-white text-xl font-bold block mb-2">We're fixing things behind the scenes</span>
<span class="text-white">Our technical team is working to restore full service</span>
</div>
</div>
</div>
</div>
</div>
<!-- Social Media Section -->
<div class="bg-gray-100 py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h3 class="text-2xl font-bold text-center text-gray-800 mb-8">Stay Connected With Us</h3>
<div class="flex justify-center space-x-6">
<a href="#" class="bg-white p-4 rounded-full shadow-md hover:bg-green-500 hover:text-white transition duration-300">
<i class="fab fa-instagram text-2xl"></i>
</a>
<a href="#" class="bg-white p-4 rounded-full shadow-md hover:bg-green-500 hover:text-white transition duration-300">
<i class="fab fa-facebook-f text-2xl"></i>
</a>
<a href="#" class="bg-white p-4 rounded-full shadow-md hover:bg-green-500 hover:text-white transition duration-300">
<i class="fab fa-twitter text-2xl"></i>
</a>
<a href="#" class="bg-white p-4 rounded-full shadow-md hover:bg-green-500 hover:text-white transition duration-300">
<i class="fab fa-pinterest-p text-2xl"></i>
</a>
<a href="#" class="bg-white p-4 rounded-full shadow-md hover:bg-green-500 hover:text-white transition duration-300">
<i class="fab fa-tiktok text-2xl"></i>
</a>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-12 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- About Column -->
<div>
<h3 class="text-lg font-semibold mb-4">About FashionHub</h3>
<p class="text-gray-400 mb-4">We offer premium quality clothing for men, women, and kids at affordable prices. Our mission is to make fashion accessible to everyone.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-tiktok"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-pinterest"></i>
</a>
</div>
</div>
<!-- Quick Links Column -->
<div>
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="index.html" class="text-gray-400 hover:text-white transition duration-300">Home</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Shop</a></li>
<li><a href="about.html" class="text-gray-400 hover:text-white transition duration-300">About Us</a></li>
<li><a href="contact.html" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Blog</a></li>
</ul>
</div>
<!-- Customer Service Column -->
<div>
<h3 class="text-lg font-semibold mb-4">Customer Service</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Shipping Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Returns & Exchanges</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Size Guide</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">FAQs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Privacy Policy</a></li>
</ul>
</div>
<!-- Contact Column -->
<div>
<h3 class="text-lg font-semibold mb-4">Need Help?</h3>
<div class="mb-4">
<p class="text-gray-400">Our customer service team is available to assist you:</p>
</div>
<div class="mt-4 flex items-center">
<i class="fas fa-phone-alt text-green-500 mr-2"></i>
<span class="text-gray-400">+256 770-849-939</span>
</div>
<div class="mt-2 flex items-center">
<i class="fas fa-envelope text-green-500 mr-2"></i>
<span class="text-gray-400">support@fashionhub.com</span>
</div>
<div class="mt-2 flex items-center">
<i class="fas fa-clock text-green-500 mr-2"></i>
<span class="text-gray-400">Mon-Fri: 9AM-6PM</span>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<p class="text-gray-400">© 2025 FashionHub. All rights reserved.</p>
</div>
<div class="flex space-x-6 items-center">
<i class="fab fa-cc-visa text-3xl text-gray-300 hover:text-white transition-colors duration-300" aria-label="Visa"></i>
<i class="fab fa-cc-mastercard text-3xl text-gray-300 hover:text-white transition-colors duration-300" aria-label="Mastercard"></i>
<i class="fab fa-cc-paypal text-3xl text-gray-300 hover:text-white transition-colors duration-300" aria-label="PayPal"></i>
<i class="fab fa-cc-apple-pay text-3xl text-gray-300 hover:text-white transition-colors duration-300" aria-label="Apple Pay"></i>
</div>
</div>
</div>
</footer>
<!-- Mobile menu toggle script -->
<script>
const btn = document.querySelector(".mobile-menu-button");
const menu = document.querySelector(".mobile-menu");
btn.addEventListener("click", () => {
menu.classList.toggle("hidden");
});
</script>
</body>
</html>