-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome-page.html
More file actions
309 lines (309 loc) · 14.6 KB
/
Home-page.html
File metadata and controls
309 lines (309 loc) · 14.6 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HackerOS - Home</title>
<link rel="icon" type="image/png" href="HackerOS.png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
body {
background-color: #1C2526;
color: #FFFFFF;
line-height: 1.6;
}
header {
background-color: #121212;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
transition: background-color 0.3s ease;
}
header:hover {
background-color: #1A1A1A;
}
.social-links {
background-color: rgba(255, 255, 255, 0.05);
padding: 10px 0;
display: flex;
justify-content: center;
gap: 12px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.social-links a {
display: flex;
justify-content: center;
align-items: center;
width: 38px;
height: 38px;
background-color: #2F3A44;
border-radius: 50%;
transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.social-links a:hover {
background-color: #B0B0B0;
transform: scale(1.15);
box-shadow: 0 3px 8px rgba(255, 255, 255, 0.3);
}
.social-links svg {
width: 22px;
height: 22px;
fill: #FFFFFF;
transition: fill 0.3s;
}
.social-links a:hover svg {
fill: #121212;
}
.social-links img {
width: 24px;
height: 24px;
object-fit: contain;
transition: filter 0.3s;
}
.social-links a:hover img {
filter: brightness(0.8);
}
nav {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
}
nav .logo img {
height: 40px;
width: auto;
}
nav ul {
list-style: none;
display: flex;
gap: 25px;
align-items: center;
}
nav ul li a {
color: #FFFFFF;
text-decoration: none;
font-size: 18px;
transition: color 0.3s, transform 0.3s;
position: relative;
}
nav ul li a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 0;
background-color: #B0B0B0;
transition: width 0.3s;
}
nav ul li a:hover::after {
width: 100%;
}
nav ul li a:hover {
color: #B0B0B0;
transform: translateY(-2px);
}
.hero {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
background: linear-gradient(45deg, #1C2526, #2F3A44);
position: relative;
overflow: hidden;
padding-top: 100px; /* Adjusted for header with social bar */
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.5) 100%);
z-index: -1;
}
.hero-content h1 {
font-size: 48px;
margin-bottom: 20px;
color: #FFFFFF;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-content p {
font-size: 20px;
margin-bottom: 30px;
color: #B0B0B0;
}
.hero-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
display: inline-block;
padding: 12px 24px;
background-color: #B0B0B0;
color: #121212;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn:hover {
background-color: #FFFFFF;
transform: scale(1.05);
box-shadow: 0 4px 10px rgba(255,255,255,0.2);
}
footer {
background-color: #121212;
padding: 20px;
text-align: center;
color: #B0B0B0;
position: relative;
bottom: 0;
width: 100%;
box-shadow: 0 -2px 5px rgba(0,0,0,0.5);
}
.footer-buttons {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 10px;
}
.cursor {
animation: blink 0.7s infinite;
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
</style>
<script>
document.addEventListener('DOMContentLoaded', () => {
const userLang = navigator.language || navigator.userLanguage;
let words;
if (userLang.startsWith('pl')) {
document.documentElement.lang = 'pl';
document.getElementById('title').textContent = 'Witaj w HackerOS.';
document.getElementById('prefix').textContent = 'Dystrybucja Linuksa dla: ';
words = ['graczy', 'specjalistów ds. cyberbezpieczeństwa', 'hackerów', 'zwykłych użytkowników', 'deweloperów', 'użytkowników ceniących stabilność', 'administratorów Linuksa'];
document.querySelector('footer p').textContent = '© 2026 HackerOS. Wszelkie prawa zastrzeżone.';
} else {
document.documentElement.lang = 'en';
document.getElementById('title').textContent = 'Welcome to HackerOS';
document.getElementById('prefix').textContent = 'Linux distro for: ';
words = ['gamers', 'cybersecurity specialists', 'hackers', 'normal users', 'developers', 'stability users'];
document.querySelector('footer p').textContent = '© 2026 HackerOS. All rights reserved.';
}
let i = 0;
let timer;
const typingElement = document.getElementById('typing');
function typeWord(word) {
let j = 0;
timer = setInterval(() => {
if (j < word.length) {
typingElement.textContent += word.charAt(j);
j++;
} else {
clearInterval(timer);
setTimeout(deleteWord, 2000);
}
}, 100);
}
function deleteWord() {
timer = setInterval(() => {
if (typingElement.textContent.length > 0) {
typingElement.textContent = typingElement.textContent.slice(0, -1);
} else {
clearInterval(timer);
i = (i + 1) % words.length;
setTimeout(() => typeWord(words[i]), 500);
}
}, 50);
}
typeWord(words[0]);
});
</script>
</head>
<body>
<header>
<div class="social-links">
<a href="https://discord.com/invite/8yHNcBaEKy" target="_blank" rel="noopener noreferrer" title="Discord">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
<path d="M13.545 2.907a13.2 13.2 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.2 12.2 0 0 0-3.658 0 8 8 0 0 0-.412-.833.05.05 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.04.04 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032q.003.022.021.037a13.3 13.3 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019q.463-.63.818-1.329a.05.05 0 0 0-.01-.059l-.018-.011a9 9 0 0 1-1.248-.595.05.05 0 0 1-.02-.066l.015-.019q.127-.095.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.05.05 0 0 1 .053.007q.121.1.248.195a.05.05 0 0 1-.004.085 8 8 0 0 1-1.249.594.05.05 0 0 0-.03.03.05.05 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.2 13.2 0 0 0 4.001-2.02.05.05 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.03.03 0 0 0-.02-.019m-8.198 7.307c-.789 0-1.438-.724-1.438-1.612s.637-1.613 1.438-1.613c.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612m5.316 0c-.788 0-1.438-.724-1.438-1.612s.637-1.613 1.438-1.613c.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612"/>
</svg>
</a>
<a href="https://x.com/hackeros_linux" target="_blank" rel="noopener noreferrer" title="X (Twitter)">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
<path d="M12.6.75h2.454l-5.36 6.142L16 15.25h-4.937l-3.867-5.07-4.425 5.07H.316l5.733-6.57L0 .75h5.063l3.495 4.633L12.601.75Zm-.86 13.028h1.36L4.323 2.145H2.865z"/>
</svg>
</a>
<a href="https://linuxiarze.pl/distro-hackeros/" target="_blank" rel="noopener noreferrer" title="Linuxiarze">
<img src="https://linuxiarze.pl/obrazy/images/logo-linuxiarze1.webp" alt="Linuxiarze" onerror="this.src='https://via.placeholder.com/24';">
</a>
<a href="https://distrowatch.com/table.php?distribution=hackeros" target="_blank" rel="noopener noreferrer" title="DistroWatch">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Distrowatch-logo.png/24px-Distrowatch-logo.png" alt="DistroWatch" onerror="this.src='https://via.placeholder.com/24';">
</a>
<a href="https://www.reddit.com/r/HackerOS_/" target="_blank" rel="noopener noreferrer" title="Reddit">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M24 11.779c0-1.459-1.192-2.645-2.657-2.645-.715 0-1.363.286-1.84.746-1.81-1.191-4.259-1.949-6.971-2.046l1.483-4.669 4.016.941-.006.058c0 .828.671 1.5 1.5 1.5s1.5-.672 1.5-1.5c0-.828-.671-1.5-1.5-1.5-.689 0-1.259.541-1.466 1.236l-4.013-.908-1.656 5.207c-2.765.093-5.236.842-7.058 2.046a2.658 2.658 0 0 0-1.844-.746C1.192 9.134 0 10.32 0 11.779c0 .996.547 1.862 1.36 2.317-.04.256-.06.516-.06.784 0 3.514 4.412 6.364 9.868 6.364 5.455 0 9.868-2.85 9.868-6.364 0-.268-.021-.528-.06-.784.814-.455 1.36-1.321 1.36-2.317zm-14.355 2.93c0-.862.695-1.559 1.555-1.559.859 0 1.554.697 1.554 1.559 0 .861-.695 1.558-1.554 1.558-.86 0-1.555-.696-1.555-1.558zm7.945 4.978c-1.678 1.143-3.901 1.805-6.344 1.805-2.442 0-4.665-.662-6.344-1.805-.396-.269-.496-.766-.227-1.161.27-.396.766-.496 1.161-.227 1.374.934 3.184 1.48 5.41 1.48 2.226 0 4.036-.546 5.41-1.48.395-.269.891-.169 1.161.227.269.395.169.891-.227 1.161zm-.227-3.419c-.859 0-1.554-.697-1.554-1.558 0-.862.695-1.559 1.554-1.559.86 0 1.555.697 1.555 1.559 0 .861-.695 1.558-1.555 1.558z"/>
</svg>
</a>
<a href="https://github.com/HackerOS-Linux-System" target="_blank" rel="noopener noreferrer" title="GitHub">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z"/>
</svg>
</a>
<!-- SourceForge icon - added next to GitHub -->
<a href="https://sourceforge.net/projects/hackeros/" target="_blank" rel="noopener noreferrer" title="SourceForge">
<img src="https://cdn.simpleicons.org/sourceforge/white" alt="SourceForge" width="24" height="24" style="display: block; margin: auto;">
</a>
<a href="https://www.youtube.com/channel/UCB_b48f2diMH2JByN2OmgGw" target="_blank" rel="noopener noreferrer" title="YouTube">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"/>
</svg>
</a>
</div>
<nav>
<div class="logo"><img src="HackerOS.png" alt="HackerOS Logo"></div>
<ul>
<li><a href="Home-page.html">Home</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="releases.html">Releases</a></li>
<li><a href="hackeros-team.html">HackerOS Team</a></li>
<li><a href="hackeros-documentation.html">Documentation</a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="hero-content">
<h1 id="title">Witaj w HackerOS.</h1>
<p><span id="prefix">Dystrybucja Linuksa dla: </span><span id="typing"></span><span class="cursor">|</span></p>
<div class="hero-buttons">
<a href="download.html" class="btn">Pobierz Teraz</a>
<a href="hackeros-documentation.html" class="btn">Dokumentacja</a>
</div>
</div>
</section>
<footer>
<div class="footer-buttons">
<a href="https://github.com/HackerOS-Linux-System/HackerOS-Website/discussions" class="btn">Forum Dyskusyjne</a>
<a href="https://github.com/HackerOS-Linux-System/HackerOS-Website/issues" class="btn">Zgłoś błąd</a>
<a href="https://github.com/HackerOS-Linux-System/HackerOS-App/releases/download/v0.4/HackerOS-App-0.4.apk" class="btn">Pobierz aplikacje na androida</a>
</div>
<p>© 2026 HackerOS. Wszelkie prawa zastrzeżone.</p>
</footer>
</body>
</html>