-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (78 loc) · 3.58 KB
/
index.html
File metadata and controls
81 lines (78 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Personal homelab portal for accessing development services">
<title>{ gamecrash.dev }</title>
<link rel="stylesheet" href="/assets/css/styles.css">
<link rel="icon" type="image/x-icon" href="/assets/img/favicon.ico">
<link href="/assets/css/fontawesome/fa-reduced.css" rel="stylesheet">
</head>
<body>
<header class="header">
<nav class="nav">
<div class="nav-container">
<div class="nav-brand">
<a href="/" class="brand-link">{ gamecrash.dev }</a>
</div>
<ul class="nav-menu">
<li class="nav-item">
<a href="/" class="nav-link active">Home</a>
</li>
<li class="nav-item">
<a href="/services/" class="nav-link">Hosted Services</a>
</li>
<li class="nav-item">
<a href="https://github.com/gamecrash534" target="_blank" class="nav-link">GitHub</a>
</li>
<li class="nav-item">
<button class="theme-toggle" id="theme-toggle" aria-label="Dark-Mode Toggle">
<i class="fas fa-moon"></i>
</button>
</li>
</ul>
<div class="hamburger" id="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
</header>
<main>
<section class="hero">
<div class="hero-container">
<div class="hero-content">
<h1 class="hero-title">
Welcome to <span class="highlight">gamecrash.dev</span>!
</h1>
<p class="hero-description">
Hey there. This is my site.
It will now also serve as the new primary domain - which previously was <a href="https://gamecrash.xyz">gamecrash.xyz</a>.
You will currently only find a list of my hosted services, but in the near future this page will be almost identical to the old one.
So feel free to come back at some point ;-)
<div class="hero-actions">
<a href="/services/" class="btn btn-secondary">View list of hosted services</a>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<div class="footer-content">
<p>© 2025 gamecrash.dev</p>
<div class="footer-links">
<a href="https://github.com/gamecrash534" target="_blank" rel="noopener">
GitHub
</a>
</div>
</div>
</div>
</footer>
<script src="/scripts/darkmode.js"></script>
<script src="/scripts/navigation.js"></script>
<script src="/scripts/script.js"></script>
</body>
</html>