|
155 | 155 | left: -20px; |
156 | 156 | font-size: 18px; |
157 | 157 | } |
158 | | - .docs, .privacy { |
| 158 | + .docs, .privacy, .editions { |
159 | 159 | margin: 20px 0; |
160 | 160 | } |
161 | 161 | footer { |
162 | 162 | background-color: #121212; |
163 | 163 | padding: 20px; |
164 | 164 | text-align: center; |
165 | 165 | color: #B0B0B0; |
166 | | - position: The current date and time is 01:27 PM CEST on Saturday, September 20, 2025. |
| 166 | + position: relative; |
167 | 167 | bottom: 0; |
168 | 168 | width: 100%; |
169 | 169 | box-shadow: 0 -2px 5px rgba(0,0,0,0.5); |
|
199 | 199 | document.querySelector('.docs p').textContent = 'Coming soon'; |
200 | 200 | document.querySelector('.privacy h2').textContent = 'Privacy Policy'; |
201 | 201 | 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).'; |
202 | 211 | } |
203 | | - |
204 | 212 | const copyButtons = document.querySelectorAll('.copy-button'); |
205 | 213 | copyButtons.forEach(button => { |
206 | 214 | button.addEventListener('click', () => { |
@@ -278,6 +286,18 @@ <h2>Dokumentacja</h2> |
278 | 286 | <h2>Polityka prywatności</h2> |
279 | 287 | <p>Coming soon</p> |
280 | 288 | </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> |
281 | 301 | </section> |
282 | 302 | <footer> |
283 | 303 | <p>© 2025 HackerOS. Wszelkie prawa zastrzeżone.</p> |
|
0 commit comments