Skip to content

Commit f629790

Browse files
authored
Update about-hackeros.html
1 parent 89cc141 commit f629790

File tree

1 file changed

+23
-3
lines changed

1 file changed

+23
-3
lines changed

about-hackeros.html

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,15 +155,15 @@
155155
left: -20px;
156156
font-size: 18px;
157157
}
158-
.docs, .privacy {
158+
.docs, .privacy, .editions {
159159
margin: 20px 0;
160160
}
161161
footer {
162162
background-color: #121212;
163163
padding: 20px;
164164
text-align: center;
165165
color: #B0B0B0;
166-
position: The current date and time is 01:27 PM CEST on Saturday, September 20, 2025.
166+
position: relative;
167167
bottom: 0;
168168
width: 100%;
169169
box-shadow: 0 -2px 5px rgba(0,0,0,0.5);
@@ -199,8 +199,16 @@
199199
document.querySelector('.docs p').textContent = 'Coming soon';
200200
document.querySelector('.privacy h2').textContent = 'Privacy Policy';
201201
document.querySelector('.privacy p').textContent = 'Coming soon';
202+
document.querySelector('.editions h2').textContent = 'HackerOS Editions';
203+
const editionTitles = document.querySelectorAll('.editions h3');
204+
editionTitles[0].textContent = 'Official Edition';
205+
editionTitles[1].textContent = 'Hydra Edition';
206+
editionTitles[2].textContent = 'Cybersecurity Edition';
207+
const editionPs = document.querySelectorAll('.editions p');
208+
editionPs[0].textContent = 'The Official Edition is a standard edition for users, gamers, and programmers, suitable for practically everyone.';
209+
editionPs[1].textContent = 'The Hydra Edition is a copy of the HackerOS edition but with a different look (Garuda-like).';
210+
editionPs[2].textContent = 'The Cybersecurity Edition has no visual modifications and is a copy of the Official Edition but designed for cybersecurity enthusiasts (this version includes penetration testing tools, cybersecurity tools, and runs on the Xen kernel known from Qubes OS).';
202211
}
203-
204212
const copyButtons = document.querySelectorAll('.copy-button');
205213
copyButtons.forEach(button => {
206214
button.addEventListener('click', () => {
@@ -278,6 +286,18 @@ <h2>Dokumentacja</h2>
278286
<h2>Polityka prywatności</h2>
279287
<p>Coming soon</p>
280288
</div>
289+
<div class="editions">
290+
<h2>Edycje HackerOS</h2>
291+
<h3>Edycja Official</h3>
292+
<img src="official-edition.png" alt="Official Edition">
293+
<p>Edycja Official jest to zwykła edycja dla użytkowników, graczy, programistów, praktycznie dla każdego.</p>
294+
<h3>Edycja Hydra</h3>
295+
<img src="hydra-edition.png" alt="Hydra Edition">
296+
<p>Edycja Hydra to kopia edycji HackerOS, ale z innym wyglądem (Garuda-like).</p>
297+
<h3>Edycja Cybersecurity</h3>
298+
<img src="cybersecurity-edition.png" alt="Cybersecurity Edition">
299+
<p>Edycja Cybersecurity nie posiada modyfikacji wyglądu, jest to też kopia wersji oficjalnej, ale przeznaczona dla entuzjastów cyberbezpieczeństwa (wersja Cybersecurity posiada narzędzia do testów penetracyjnych, narzędzia do cyberbezpieczeństwa, pod jądro Xen znane z systemu Qubes OS).</p>
300+
</div>
281301
</section>
282302
<footer>
283303
<p>&copy; 2025 HackerOS. Wszelkie prawa zastrzeżone.</p>

0 commit comments

Comments
 (0)