-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
32 lines (27 loc) · 1.28 KB
/
Copy path404.html
File metadata and controls
32 lines (27 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found - Python to AI</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 href="https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
body { font-family: 'Nunito', sans-serif; }
</style>
</head>
<body class="bg-gray-50 min-h-screen flex flex-col items-center justify-center text-center px-4">
<div class="max-w-md">
<div class="text-indigo-600 mb-6">
<i class="fa-solid fa-triangle-exclamation fa-4x"></i>
</div>
<h1 class="text-6xl font-extrabold text-gray-900 mb-4">404</h1>
<h2 class="text-2xl font-bold text-gray-700 mb-4">Page Not Found</h2>
<p class="text-gray-500 mb-8">The page you're looking for doesn't exist or has moved.</p>
<a href="/python-to-ai/" class="inline-block px-8 py-3 bg-indigo-600 text-white font-semibold rounded-lg hover:bg-indigo-700 transition">
<i class="fa-solid fa-house mr-2"></i>Back to Home
</a>
</div>
</body>
</html>