add 404 page

This commit is contained in:
Noa Aarts 2024-12-12 15:09:00 +01:00
parent 438fac10ba
commit 365701eebd
Signed by: noa
GPG key ID: 1850932741EFF672

20
assets/404.html Normal file
View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Flurry - OOPS</title>
<link href="/style.css" rel="stylesheet">
</head>
<body>
<div>
<h1>Oops</h1>
<p>it seems like the page you were trying to get does not exist,
that's sad. But maybe you can find it again from the homepage?</p>
<a href="/">go to the homepage</a>
</div>
</body>
</html>