23 lines
721 B
PHP
23 lines
721 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/4.0.0-beta.9/lib.min.js"></script> -->
|
|
<link rel="stylesheet" href="./../../app/assets/css/styles.css">
|
|
<title>Page Not Found</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div className="flex flex-col items-center justify-center h-screen bg-gray-100">
|
|
<h1 className="text-6xl font-bold text-red-500">404</h1>
|
|
<p className="mt-4 text-xl">Oops! Page Not Found</p>
|
|
<a href="/" className="mt-6 text-blue-500 hover:underline">
|
|
Go to Homepage
|
|
</a>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |