add custom 404 page
This commit is contained in:
63
public/assets/tailwind.js
Normal file
63
public/assets/tailwind.js
Normal file
File diff suppressed because one or more lines are too long
19
public/not-found.html
Normal file
19
public/not-found.html
Normal file
@ -0,0 +1,19 @@
|
||||
<!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="./assets/tailwind.js"></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>
|
Reference in New Issue
Block a user