86 lines
2.5 KiB
HTML
86 lines
2.5 KiB
HTML
<!doctype html>
|
|
<html lang="en" class="h-full bg-gray-50">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Page Not Found - EDH Stats Tracker</title>
|
|
<meta
|
|
name="description"
|
|
content="The page you're looking for doesn't exist. Return to EDH Stats Tracker."
|
|
/>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="stylesheet" href="/css/styles.css" />
|
|
</head>
|
|
<body class="min-h-full flex flex-col">
|
|
<!-- Navigation -->
|
|
<nav class="bg-white shadow">
|
|
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 py-4">
|
|
<a
|
|
href="/dashboard.html"
|
|
class="text-2xl font-bold font-mtg text-edh-primary"
|
|
>
|
|
EDH Stats
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Main Content -->
|
|
<div
|
|
class="flex-1 flex items-center justify-center px-4 sm:px-6 lg:px-8 py-12"
|
|
>
|
|
<div class="max-w-md w-full text-center">
|
|
<!-- 404 Icon -->
|
|
<div class="mb-8">
|
|
<div class="text-6xl font-bold text-edh-primary mb-2">404</div>
|
|
<h1 class="text-4xl font-bold font-mtg text-gray-900 mb-4">
|
|
Page Not Found
|
|
</h1>
|
|
<p class="text-lg text-gray-600 mb-8">
|
|
Sorry, the page you're looking for doesn't exist. It might have been
|
|
moved or deleted.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Icon -->
|
|
<div class="mb-8">
|
|
<svg
|
|
class="w-24 h-24 mx-auto text-gray-400"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="1.5"
|
|
d="M9.172 16.172a4 4 0 015.656 0M9 10h.01M15 10h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
></path>
|
|
</svg>
|
|
</div>
|
|
|
|
<!-- Actions -->
|
|
<div class="space-y-4">
|
|
<a
|
|
href="/"
|
|
class="inline-block px-6 py-3 bg-edh-accent text-white font-medium rounded-lg hover:bg-edh-primary transition-colors"
|
|
>
|
|
Return to Home
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Helpful Info -->
|
|
<div class="mt-12 pt-8 border-t border-gray-200">
|
|
<p class="text-xs text-gray-500">Error Code: 404 | Page Not Found</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Scripts -->
|
|
<script
|
|
defer
|
|
src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"
|
|
></script>
|
|
<script src="/js/footer-loader.js"></script>
|
|
</body>
|
|
</html>
|