website/404.html
2025-09-29 08:24:59 +00:00

27 lines
1.0 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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 - 4NK</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<div class="background-pattern"></div>
<div class="container" style="min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;">
<div>
<h1 style="font-size: 6rem; color: var(--primary-orange); margin-bottom: 1rem;">404</h1>
<h2 style="font-size: 2rem; color: var(--text-light); margin-bottom: 2rem;">Page not found</h2>
<p style="color: var(--text-gray); margin-bottom: 3rem; font-size: 1.2rem;">
The page you are looking for doesnt exist or has been moved.
</p>
<a href="/" class="btn btn-primary" style="text-decoration: none;">
Back to home
</a>
</div>
</div>
</body>
</html>