feat: template for 404

This commit is contained in:
2025-12-28 17:31:32 +01:00
parent 64a9db7324
commit 43253e6fc6

32
templates/404.html.ep Normal file
View File

@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<title>404 Not Found</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
color: #222;
max-width: 600px;
margin: 0 auto;
padding: 2rem;
text-align: center;
}
h1 {
font-size: 3rem;
margin-bottom: 0.5rem;
color: #444;
}
p {
font-size: 1.1rem;
color: #666;
}
</style>
</head>
<body>
<h1>404 Not Found</h1>
<p>The requested short link was not found.</p>
</body>
</html>