22 lines
677 B
HTML
22 lines
677 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<title>404 - Page not found</title>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
|
||
</head>
|
||
<body class="bg-gray-50 h-screen flex flex-col items-center justify-center">
|
||
<h1 class="text-4xl font-bold mb-4">404 - Page not found</h1>
|
||
<p class="text-gray-700 mb-8">
|
||
Sorry, we couldn’t find the page you’re looking for.
|
||
</p>
|
||
<a
|
||
href="/"
|
||
class="text-blue-600 underline text-lg hover:text-blue-800"
|
||
>
|
||
← Back to home
|
||
</a>
|
||
</body>
|
||
</html>
|