-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1.17 KB
/
index.html
File metadata and controls
34 lines (31 loc) · 1.17 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
<!-- views/error.ejs -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 | BookNest</title>
<link rel="stylesheet" href="./output.css">
</head>
<body class="bg-gray-50 flex items-center justify-center min-h-screen px-4">
<div class="max-w-2xl text-center">
<div class="mb-6">
<!-- SVG Illustration -->
<svg class="w-48 h-48 mx-auto text-yellow-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2"
d="M12 9v2m0 4h.01M21 12A9 9 0 1 1 3 12a9 9 0 0 1 18 0z" />
</svg>
</div>
<h1 class="text-4xl font-bold text-gray-800 mb-2">
<%= errorCode %> - <%= errorTitle %>
</h1>
<p class="text-gray-600 text-lg mb-6">
<%= errorMessage %>
</p>
<a href="/"
class="inline-block mt-4 px-6 py-3 bg-yellow-400 text-white rounded-md hover:bg-yellow-500 transition-all duration-200">
Go Back Home
</a>
</div>
</body>
</html>