20 lines
586 B
HTML
20 lines
586 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>File Not Found</title>
|
|
|
|
<!-- TailwindCSS -->
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body
|
|
class="h-screen bg-neutral-900 text-white flex flex-col text-center justify-center items-center p-4 gap-2"
|
|
>
|
|
<p class="text-red-400 text-3xl">404 - File Not Found</p>
|
|
<p class="text-gray-400 text-xl">
|
|
We're sorry, the file you requested could not be found.
|
|
</p>
|
|
</body>
|
|
</html>
|