|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>404 - Page Not Found</title> |
|
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> |
|
<link href="https://cdn.jsdelivr.net/npm/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet"> |
|
</head> |
|
<body class="bg-gray-900 text-white min-h-screen flex flex-col"> |
|
<div class="container max-w-6xl mx-auto text-center py-12 flex-1"> |
|
<img src="https://raw.githubusercontent.com/Mark-Lasfar/MGZon/main/public/icons/mg.svg" alt="MGZon Logo" class="w-32 h-32 mx-auto mb-6 animate-bounce"> |
|
<h1 class="text-5xl font-bold mb-4">404 - Page Not Found 😕</h1> |
|
<p class="text-lg mb-8">Oops! Looks like you wandered into the wrong corner of the internet.</p> |
|
<a href="/" class="inline-block bg-gradient-to-r from-orange-500 to-red-500 text-white px-8 py-4 rounded-full text-lg font-semibold hover:scale-105 transition transform">Back to Home</a> |
|
</div> |
|
<footer class="bg-gradient-to-r from-blue-900 to-gray-900 py-12"> |
|
<div class="container max-w-6xl mx-auto text-center"> |
|
<img src="https://raw.githubusercontent.com/Mark-Lasfar/MGZon/main/public/icons/mg.svg" alt="MGZon Logo" class="w-24 h-24 mx-auto mb-6 animate-pulse"> |
|
<p class="mb-4">Developed by <a href="https://mark-elasfar.web.app/" target="_blank" class="text-orange-500 hover:underline">Mark Al-Asfar</a> | Powered by <a href="https://hager-zon.vercel.app/" target="_blank" class="text-orange-500 hover:underline">MGZon AI</a></p> |
|
<div class="flex justify-center gap-6"> |
|
<a href="https://github.com/Mark-Lasfar/MGZon" class="text-2xl text-white hover:text-orange-500 transition"><i class="bx bxl-github"></i></a> |
|
<a href="https://x.com/MGZon" class="text-2xl text-white hover:text-orange-500 transition"><i class="bx bxl-twitter"></i></a> |
|
<a href="https://www.facebook.com/people/Mark-Al-Asfar/pfbid02GMisUQ8AqWkNZjoKtWFHH1tbdHuVscN1cjcFnZWy9HkRaAsmanBfT6mhySAyqpg4l/" class="text-2xl text-white hover:text-orange-500 transition"><i class="bx bxl-facebook"></i></a> |
|
</div> |
|
<p class="mt-6">© 2025 Mark Al-Asfar & MGZon AI. All rights reserved.</p> |
|
</div> |
|
</footer> |
|
<script src="/static/js/scripts.js"></script> |
|
</body> |
|
</html> |
|
|