-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (64 loc) · 3.36 KB
/
Copy pathindex.html
File metadata and controls
72 lines (64 loc) · 3.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hashtek - Maintenance</title>
<meta name="description" content="Minecraft Server Maintenance Page" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="stars"></div>
<div class="twinkling"></div>
<main class="container">
<div class="maintenance-badge">Maintenance Mode</div>
<h1 class="title">We're <span class="highlight">Upgrading</span> Our Server</h1>
<p class="description">
We're making some amazing improvements to enhance your Minecraft experience as a player.
</p>
<!-- Countdown Timer -->
<section class="countdown">
<h2 class="countdown-title">Server maintenance will be completed in:</h2>
<div class="countdown-container">
<div class="countdown-item">
<div class="countdown-digit" id="days">90</div>
<span class="countdown-label">days</span>
</div>
<div class="countdown-item">
<div class="countdown-digit" id="hours">12</div>
<span class="countdown-label">hours</span>
</div>
<div class="countdown-item">
<div class="countdown-digit" id="minutes">45</div>
<span class="countdown-label">minutes</span>
</div>
<div class="countdown-item">
<div class="countdown-digit" id="seconds">22</div>
<span class="countdown-label">seconds</span>
</div>
</div>
</section>
<!-- Social Links -->
<section class="social-links">
<a href="https://discord.gg/tvz2kvkA" class="social-button discord" aria-label="Join our Discord">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M9 12h6m-6 4h6m-6-8h6m-8 12a2 2 0 0 0 2-2V6a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 0 2 2H5z"></path>
</svg>
<span>Join our Discord</span>
</a>
<a href="https://github.com/hashtek-mc" class="social-button github" aria-label="Follow on GitHub">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2 c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"></path>
</svg>
<span>Follow on GitHub</span>
</a>
</section>
<!-- Footer -->
<footer class="footer">
<p>© <span id="year">2025</span> Hashtek</p>
</footer>
</main>
<script src="script.js" defer></script>
</body>
</html>