-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
60 lines (45 loc) · 1.78 KB
/
404.html
File metadata and controls
60 lines (45 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#F5F5F7">
<title>Seite nicht gefunden | Chris Jemming</title>
<link rel="stylesheet" href="css/main.css">
<link rel="icon" type="image/png" href="assets/favicon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script src="js/components.js" defer></script>
<script src="js/main.js" defer></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
document.body.classList.add('preload');
setTimeout(() => { document.body.classList.remove('preload'); }, 200);
});
const savedTheme = localStorage.getItem('theme');
if (savedTheme) { document.documentElement.setAttribute('data-theme', savedTheme); }
</script>
</head>
<body class="preload error-page">
<div class="background-orbs">
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
</div>
<app-navbar></app-navbar>
<main class="container">
<div class="error-container fade-in">
<div class="glass-card" style="padding: 60px 40px; display: inline-block; margin-bottom: 30px;">
<h1 class="error-code">404</h1>
</div>
<h2 class="error-title">Oops! Page not found.</h2>
<p class="error-desc">
The page you are looking for does not exist or has been moved. Maybe you made a typo?
</p>
<a href="index.html" class="btn-action" style="align-self: center;">
<i class="fa-solid fa-house"></i> Back to Home
</a>
</div>
</main>
<app-footer></app-footer>
<script src="js/main.js"></script>
</body>
</html>