docs: improved webpages

This commit is contained in:
Rifat Azad
2025-01-15 15:43:17 +06:00
parent 1c8b088d9f
commit efe4f03aa2
8 changed files with 276 additions and 300 deletions
+54 -20
View File
@@ -28,10 +28,10 @@
<a class="nav-link text-light" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#installation">Installation</a>
<a class="nav-link text-light" href="#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="pages/features.html">Features</a>
<a class="nav-link text-light" href="pages/installation.html">Installation</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="pages/devices.html">Devices</a>
@@ -61,25 +61,59 @@
</div>
</header>
<!-- Installation Section -->
<section id="installation" class="py-5">
<!-- Features Section -->
<section id="features" class="py-5">
<div class="container">
<h2 class="text-center mb-4">Installation</h2>
<p class="text-center">Run the following commands below for different installation options, they should be run inside the root of your kernel's directory.</p>
<h3 class="mt-4">Latest release</h3>
<div class="highlight mt-3">
<code>curl -LSs "https://raw.githubusercontent.com/rifsxd/KernelSU-Next/next/kernel/setup.sh" | bash -</code>
<button class="btn btn-copy mt-2" onclick="copyToClipboard(this)">Copy</button>
</div>
<h3 class="mt-4">Next branch (dev)</h3>
<div class="highlight mt-3">
<code>curl -LSs "https://raw.githubusercontent.com/rifsxd/KernelSU-Next/next/kernel/setup.sh" | bash -s next</code>
<button class="btn btn-copy mt-2" onclick="copyToClipboard(this)">Copy</button>
</div>
<h3 class="mt-4">Specific tag</h3>
<div class="highlight mt-3">
<code>curl -LSs "https://raw.githubusercontent.com/rifsxd/KernelSU-Next/next/kernel/setup.sh" | bash -s v1.0.3</code>
<button class="btn btn-copy mt-2" onclick="copyToClipboard(this)">Copy</button>
<h2 class="text-center mb-4">Features</h2>
<div class="row">
<div class="col-md-6 col-lg-4 mb-4 d-flex">
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
<h3><i class="fas fa-microchip"></i> Non-GKI kernel support</h3>
<p>Non-GKI kernel support from 4.x - 5.4 LTS (3.x is experimental).</p>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 d-flex">
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
<h3><i class="fas fa-cogs"></i> GKI kernel support</h3>
<p>GKI kernels support LKM/KMI methods for easy installation.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 d-flex">
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
<h3><i class="fas fa-magic"></i> Dynamic module mount</h3>
<p>KernelSU Next includes both Magic Mount and OverlayFS, which can be switched from the settings with a single toggle.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 d-flex">
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
<h3><i class="fas fa-tools"></i> New manager features</h3>
<p>KernelSU Next has a new, redesigned manager with several feature improvements and a UI overhaul.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 d-flex">
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
<h3><i class="fas fa-undo"></i> Module backup & restoration</h3>
<p>KernelSU Next allows for backup and restoration of modules, whether they were uninstalled accidentally, you changed your mind, or you simply want to restore a specific backup.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 d-flex">
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
<h3><i class="fas fa-sync-alt"></i> Auto-updates</h3>
<p>The KernelSU Next manager app updates automatically with new releases.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 d-flex">
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
<h3><i class="fas fa-calendar-alt"></i> Frequent updates</h3>
<p>KernelSU Next is frequently updated with lots of upcoming features.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 d-flex">
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
<h3><i class="fas fa-eye-slash"></i> Hide hosts</h3>
<p>KernelSU Next hides hosts file modifications from detectors using app profile unmount, allowing you to use ad blockers without any hassle.</p>
</div>
</div>
</div>
</div>
</section>