Skip to content

Commit 4e3b80a

Browse files
authored
Add Bootstrap Icons and update content
1 parent 5a26bad commit 4e3b80a

1 file changed

Lines changed: 14 additions & 7 deletions

File tree

index.html

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
<!-- This link fetches the latest Bootstrap 5 styles -->
3737
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
3838

39+
<!-- Bootstrap Icons CDN -->
40+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
41+
3942
<!-- Custom CSS for minor style adjustments and dark mode -->
4043
<style>
4144
:root {
@@ -45,8 +48,8 @@
4548
--card-bg-dark: rgba(33, 37, 41, 0.8);
4649
--text-light: #212529;
4750
--text-dark: #f8f9fa;
48-
--border-color-light: #dee2e6;
49-
--border-color-dark: #495057;
51+
--border-color-light: rgba(0, 0, 0, 0.175);
52+
--border-color-dark: rgba(255, 255, 255, 0.175);
5053
}
5154

5255
html { scroll-behavior: smooth; }
@@ -144,8 +147,9 @@
144147
<li class="nav-item"><a class="nav-link" href="https://github.com/DevuboxLinux/Devubox-MX/">Source Code</a></li>
145148
<li class="nav-item ms-lg-2">
146149
<a class="nav-link theme-toggle" id="theme-toggle-btn" title="Toggle theme">
147-
<svg class="sun-icon" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg>
148-
<svg class="moon-icon" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg>
150+
<!-- Replaced SVG with Bootstrap Icons -->
151+
<i class="bi bi-sun-fill sun-icon"></i>
152+
<i class="bi bi-moon-fill moon-icon"></i>
149153
</a>
150154
</li>
151155
</ul>
@@ -161,17 +165,18 @@
161165
<div class="container-fluid">
162166
<div class="row align-items-center">
163167
<div class="col-lg-6 order-lg-2 mb-4 mb-lg-0 hero-image-container">
164-
<img src="Screenshot.png" class="img-fluid rounded shadow hero-image-3d" alt="Devubox-MX Desktop">
168+
<img src="Screenshot.png" class="img-fluid rounded shadow hero-image-3d" alt="A screenshot of the Devubox-MX desktop, featuring a clean and modern interface with the Openbox window manager, a customized Tint2 panel, and various applications open.">
165169
</div>
166170
<div class="col-lg-6 order-lg-1">
167171
<h1 class="display-6 fw-bold">Introducing Devubox-MX</h1>
168172
<p class="fs-6 text-muted">A midweight, simple, and stable systemd-free desktop OS.</p>
169-
<p class="fs-5">Devubox-MX is an open-source MX Linux respin based on Devuan It uses both MX Linux and MX AHS repositories to provide access to the latest/backports of programs and drivers, similar to how PPAs function in Ubuntu. It features a customized Openbox window manager that provides a complete desktop environment inspired by CrunchBang++, BunsenLabs, Mabox, and Archcraft.</p>
173+
<p class="fs-5">Devubox-MX is an open-source MX Linux respin based on Devuan. It uses both MX Linux and MX AHS repositories to provide access to the latest/backports of programs and drivers, similar to how PPAs function in Ubuntu. It features a customized Openbox window manager that provides a complete desktop environment inspired by CrunchBang++, BunsenLabs, Mabox, and Archcraft.</p>
170174
<p class="fs-5"><strong>Disclaimer:</strong> Since this distribution is in an early alpha phase, we do not recommend installing it on your main hardware. For stability, please test it in a virtual machine (VM) unless you are a tech-savvy user comfortable with pre-release software.</p>
171175
<div class="mt-4">
172176
<p class="fs-5 mb-2">Estimated alpha release: Nov 20, 2025. This date is subject to change.</p>
173177
<div id="countdown-timer" class="fs-3 mb-3 fw-bold"></div>
174-
<a href="/download" id="download-button" class="btn btn-primary btn-lg" role="button">Download (Not available yet)</a>
178+
<a href="/download" id="download-button" class="btn btn-primary btn-lg" role="button">Download</a>
179+
<a href="#features-section" class="btn btn-secondary btn-lg" role="button">Learn More</a>
175180
</div>
176181
</div>
177182
</div>
@@ -271,6 +276,8 @@ <h2>Devubox-MX is Built On:</h2>
271276
<footer class="footer py-3 bg-dark text-white">
272277
<div class="container">
273278
<p class="mb-0">&copy; 2025 Devubox-MX. All Rights Reserved. Licensed under MIT. Made with love in Indonesia 🇮🇩.</p>
279+
<div class="mt-2">
280+
<a href="https://github.com/DevuboxLinux" class="text-white me-3" aria-label="GitHub"><i class="bi bi-github" style="font-size: 1.5rem;"></i></a>
274281
</div>
275282
</footer>
276283

0 commit comments

Comments
 (0)