Skip to content

Commit b92432c

Browse files
authored
Update about-hackeros.html
1 parent 1006156 commit b92432c

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

about-hackeros.html

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,56 @@
311311
margin-left: auto;
312312
margin-right: auto;
313313
}
314+
.hacker-kernel-section {
315+
max-width: 1200px;
316+
margin: 50px auto;
317+
padding: 30px;
318+
text-align: center;
319+
background-color: #2F3A44;
320+
border-radius: 10px;
321+
box-shadow: 0 4px 15px rgba(0,0,0,0.4);
322+
transition: transform 0.3s ease;
323+
}
324+
.hacker-kernel-section:hover {
325+
transform: translateY(-5px);
326+
}
327+
.hacker-kernel-section h2 {
328+
font-size: 32px;
329+
margin-bottom: 25px;
330+
color: #FFFFFF;
331+
text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
332+
}
333+
.hacker-kernel-section p {
334+
font-size: 18px;
335+
color: #B0B0B0;
336+
margin-bottom: 20px;
337+
max-width: 800px;
338+
margin-left: auto;
339+
margin-right: auto;
340+
}
341+
.hacker-kernel-section a {
342+
text-decoration: none;
343+
font-weight: bold;
344+
transition: color 0.3s, text-shadow 0.3s;
345+
position: relative;
346+
color: #55AAFF;
347+
}
348+
.hacker-kernel-section a:hover {
349+
text-shadow: 0 0 5px rgba(255,255,255,0.5);
350+
}
351+
.hacker-kernel-section a::after {
352+
content: '';
353+
position: absolute;
354+
width: 0;
355+
height: 2px;
356+
bottom: -2px;
357+
left: 0;
358+
background-color: currentColor;
359+
transition: width 0.3s;
360+
}
361+
.hacker-kernel-section a:hover::after {
362+
width: 100%;
363+
}
314364
@media (max-width: 768px) {
315365
.gaming-section {
316366
padding: 20px;
@@ -334,6 +384,15 @@
334384
.hacker-lang-section p {
335385
font-size: 16px;
336386
}
387+
.hacker-kernel-section {
388+
padding: 20px;
389+
}
390+
.hacker-kernel-section h2 {
391+
font-size: 26px;
392+
}
393+
.hacker-kernel-section p {
394+
font-size: 16px;
395+
}
337396
}
338397
footer {
339398
background-color: #121212;
@@ -398,6 +457,10 @@
398457
gamingPs[2].innerHTML = 'You can see how HackerOS handles games: <a href="https://www.youtube.com/channel/UCwYT5jqUhZHoRhNKOrjKTrQ" target="_blank" class="youtube">YouTube</a>.';
399458
document.querySelector('.hacker-lang-section h2').textContent = 'Hacker Programming Language';
400459
document.querySelector('.hacker-lang-section p').textContent = 'HackerOS features its own scripting programming language called Hacker. To use this tool, simply run the command "hackerc".';
460+
document.querySelector('.hacker-kernel-section h2').textContent = 'Hacker Kernel';
461+
const kernelPs = document.querySelectorAll('.hacker-kernel-section p');
462+
kernelPs[0].innerHTML = 'Do you want to develop the hacker kernel? Report to gmail [email protected] or to <a href="https://github.com/HackerOS-Linux-System/HackerOS-Website/issues">issues</a> or <a href="https://github.com/HackerOS-Linux-System/HackerOS-Website/discussions">discussions</a> (log in if you want to actively develop this project)';
463+
kernelPs[1].textContent = 'What is Hacker Kernel? It is an efficient kernel, it will have optimizations for games, it will be an LTS kernel stable with stable updates. Support for all amd64 processors and all GPUs.';
401464
}
402465
const copyButtons = document.querySelectorAll('.copy-button');
403466
copyButtons.forEach(button => {
@@ -523,6 +586,11 @@ <h2>Język Programowania Hacker</h2>
523586
<p>HackerOS posiada własny skryptowy język programowania o nazwie Hacker. Aby korzystać z tego narzędzia, użyj komendy <span style="font-family: 'Courier New', Courier, monospace;">hackerc</span>.</p>
524587
<img src="hacker-lang-screenshot.png" alt="Hacker Language Screenshot">
525588
</section>
589+
<section class="hacker-kernel-section">
590+
<h2>Hacker Kernel</h2>
591+
<p>Chcesz rozwijać jądro hacker kernel? Zgłoś się na gmail [email protected] lub na <a href="https://github.com/HackerOS-Linux-System/HackerOS-Website/issues">issues</a> lub <a href="https://github.com/HackerOS-Linux-System/HackerOS-Website/discussions">discussions</a> (zaloguj się jeżeli chcesz aktywnie rozwijać ten projekt)</p>
592+
<p>Czym jest Hacker Kernel? Jest to jądro wydajne, będzie posiadać optymalizacje do gier, będzie jądrem LTS stabilnym ze stabilnymi aktualizacjami. Wsparcie dla wszystkich procesorów amd64 i wszystkich GPU.</p>
593+
</section>
526594
<footer>
527595
<p>&copy; 2025 HackerOS. Wszelkie prawa zastrzeżone.</p>
528596
</footer>

0 commit comments

Comments
 (0)