-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
71 lines (67 loc) · 3.67 KB
/
Copy path404.html
File metadata and controls
71 lines (67 loc) · 3.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
}
.font-poppins {
font-family: 'Poppins', sans-serif;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800 antialiased">
<!-- App Container -->
<div id="app" class="min-h-screen flex flex-col">
<!-- Header -->
<header class="bg-white border-b border-gray-200 shadow-sm sticky top-0 z-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center py-3">
<a href="./index.html" class="flex items-center space-x-4">
<svg class="w-8 h-8 text-blue-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15.172 7l-6.586 6.586a2 2 0 102.828 2.828l6.414-6.586a4 4 0 00-5.656-5.656l-6.415 6.585a6 6 0 108.486 8.486L20.5 13"></path></svg>
<h1 class="text-2xl font-bold text-gray-800">Notify</h1>
</a>
<div class="flex items-center space-x-2">
<a href="./login.html" class="font-poppins inline-block bg-white text-gray-700 font-bold py-1 px-4 rounded-lg border border-gray-300 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-colors duration-150">
Log in
</a>
<a href="./signup.html" class="font-poppins inline-block bg-blue-600 text-white font-bold py-1 px-4 rounded-lg hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-colors duration-150">
Sign up
</a>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<main class="flex-grow flex items-center justify-center text-center py-12 px-4 sm:px-6 lg:px-8">
<div>
<h1 class="text-6xl sm:text-8xl font-extrabold text-blue-600 tracking-tight">404</h1>
<h2 class="mt-2 text-2xl sm:text-4xl font-bold text-gray-900">
Page Not Found
</h2>
<p class="mt-4 max-w-md mx-auto text-lg text-gray-600">
Oops! It looks like the page you're looking for doesn't exist or has been moved.
</p>
<div class="mt-8">
<a href="./index.html" class="inline-block bg-blue-600 text-white font-bold py-3 px-8 rounded-lg text-lg hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-colors duration-150">
Go back home
</a>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-white border-t border-gray-200">
<div class="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8 text-center text-gray-500">
<p>© 2025 Notify. A website created by 4simpleproblems.</p>
</div>
</footer>
</div>
</body>
</html>