-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
20 lines (20 loc) · 940 Bytes
/
404.html
File metadata and controls
20 lines (20 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 — Agent Identity (AID)</title>
<meta name="robots" content="noindex">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon-32x32.png">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-slate-50 min-h-screen flex items-center justify-center">
<div class="text-center px-6">
<div class="text-6xl font-bold text-teal-700 mb-4">404</div>
<h1 class="text-2xl font-semibold text-slate-800 mb-2">Page not found</h1>
<p class="text-slate-600 mb-8">The page you're looking for doesn't exist.</p>
<a href="/" class="inline-block bg-teal-700 text-white px-6 py-3 rounded-lg font-medium hover:bg-teal-800 transition-colors">Back to AID</a>
</div>
</body>
</html>