-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.html
More file actions
89 lines (82 loc) · 3.37 KB
/
404.html
File metadata and controls
89 lines (82 loc) · 3.37 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="GlideClient">
<meta property="og:description" content="The website for GlideClient">
<meta property="og:image" content="https://glideclient.github.io/Branding/banner.png">
<meta property="og:url" content="https://glideclient.com">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="GlideClient">
<meta name="twitter:description" content="The website for GlideClient">
<meta name="twitter:image" content="https://glideclient.github.io/Branding/banner.png">
<meta name="description" content="The website for GlideClient">
<meta name="keywords" content="minecraft, glide client, Soar client">
<meta name="author" content="GlideClient">
<meta name="theme-color" content="#6603fc">
<title>GlideClient - 404 Not Found</title>
<link rel="stylesheet" href="/style.css">
<link rel="icon" type="image/svg+xml" href="https://glideclient.github.io/Branding/glideicon.svg">
</head>
<body>
<div class="loader-wrapper">
<div class="loader">
<img src="https://glideclient.github.io/Branding/glideicon.svg" alt="GlideClient Logo">
</div>
</div>
<header class="header">
<nav class="navbar">
<div class="logo">
<a href="/">
<img src="https://glideclient.github.io/Branding/glideicon.svg" alt="GlideClient Logo">
</a>
</div>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-links">
<li><a href="/#features">Features</a></li>
<li><a href="/#about">About</a></li>
<li><a href="/download">Download</a></li>
<li><a href="/discord">Discord</a></li>
</ul>
</nav>
</header>
<main class="main">
<section class="hero">
<h1>GlideClient</h1>
<p>404 Not Found</p>
<div class="button-group">
<a href="/" class="cta-button">Return Home</a>
</div>
</section>
</main>
<footer class="footer">
<div class="footer-content">
<p>Website by GlideClient Team</p>
<p>Follow us: <a href="https://www.youtube.com/@glideclient" target="_blank">Youtube</a> | <a href="https://github.com/GlideClient/" target="_blank">GitHub</a></p>
</div>
</footer>
<script>
window.addEventListener('load', () => {
const loaderWrapper = document.querySelector('.loader-wrapper');
loaderWrapper.classList.add('fade-out');
});
const hamburger = document.querySelector('.hamburger');
const navLinks = document.querySelector('.nav-links');
hamburger.addEventListener('click', () => {
hamburger.classList.toggle('active');
navLinks.classList.toggle('active');
});
document.querySelectorAll('.nav-links a').forEach(link => {
link.addEventListener('click', () => {
hamburger.classList.remove('active');
navLinks.classList.remove('active');
});
});
</script>
</body>
</html>