-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
180 lines (172 loc) · 9.69 KB
/
index.html
File metadata and controls
180 lines (172 loc) · 9.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elezaio Linux</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #1e1e2e; color: #cdd6f4; font-family: 'JetBrains Mono', monospace, sans-serif; }
a { color: #89b4fa; text-decoration: none; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 2rem; border-bottom: 1px solid #313244; position: sticky; top: 0; background: #1e1e2e; z-index: 10; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 500; color: #cdd6f4; }
.logo-mark { display: flex; flex-direction: column; gap: 2px; }
.logo-mark span { display: flex; gap: 2px; }
.dot { width: 5px; height: 5px; background: #89b4fa; border-radius: 50%; }
.dot.accent { background: #ca9ee6; }
.nav-links { display: flex; gap: 1.5rem; font-size: 14px; color: #a6adc8; }
.nav-links a:hover { color: #cdd6f4; }
.hero { text-align: center; padding: 5rem 2rem 4rem; }
.hero-badge { display: inline-block; background: #313244; color: #89b4fa; font-size: 12px; padding: 4px 14px; border-radius: 20px; margin-bottom: 1.5rem; border: 1px solid #45475a; }
.hero h1 { font-size: 52px; font-weight: 500; color: #cdd6f4; margin-bottom: 1rem; line-height: 1.2; }
.hero h1 span { color: #89b4fa; }
.hero p { font-size: 18px; color: #a6adc8; max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; font-family: sans-serif; }
.btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn { padding: 12px 28px; border-radius: 8px; font-size: 15px; cursor: pointer; font-weight: 500; border: none; }
.btn-primary { background: #89b4fa; color: #1e1e2e; }
.btn-primary:hover { background: #b4d0fb; }
.btn-secondary { background: transparent; color: #cdd6f4; border: 1px solid #45475a; }
.btn-secondary:hover { background: #313244; }
.terminal { background: #181825; border: 1px solid #313244; border-radius: 12px; padding: 1.5rem; max-width: 560px; margin: 3rem auto 0; text-align: left; font-size: 14px; }
.terminal-bar { display: flex; gap: 6px; margin-bottom: 1rem; }
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-red { background: #f38ba8; }
.t-yellow { background: #f9e2af; }
.t-green { background: #a6e3a1; }
.term-line { margin: 4px 0; }
.term-prompt { color: #89b4fa; }
.term-cmd { color: #cdd6f4; }
.term-out { color: #a6adc8; }
.term-success { color: #a6e3a1; }
.section { padding: 4rem 2rem; }
.section-title { text-align: center; font-size: 32px; font-weight: 500; margin-bottom: 0.5rem; color: #cdd6f4; }
.section-sub { text-align: center; color: #a6adc8; margin-bottom: 3rem; font-family: sans-serif; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; max-width: 900px; margin: 0 auto; }
.feature-card { background: #181825; border: 1px solid #313244; border-radius: 12px; padding: 1.5rem; }
.feature-icon { font-size: 24px; margin-bottom: 0.8rem; }
.feature-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 0.5rem; color: #cdd6f4; }
.feature-card p { font-size: 13px; color: #a6adc8; line-height: 1.6; font-family: sans-serif; }
.specs { background: #181825; border: 1px solid #313244; border-radius: 12px; max-width: 600px; margin: 0 auto; overflow: hidden; }
.spec-row { display: flex; justify-content: space-between; padding: 12px 1.5rem; border-bottom: 1px solid #313244; font-size: 14px; }
.spec-row:last-child { border-bottom: none; }
.spec-label { color: #a6adc8; font-family: sans-serif; }
.spec-value { color: #89b4fa; font-weight: 500; }
.download { background: #181825; border-radius: 16px; padding: 3rem 2rem; text-align: center; max-width: 600px; margin: 0 auto; border: 1px solid #313244; }
.download h2 { font-size: 28px; margin-bottom: 0.5rem; }
.download p { color: #a6adc8; margin-bottom: 2rem; font-family: sans-serif; }
.dl-meta { display: flex; gap: 1.5rem; justify-content: center; font-size: 13px; color: #6c7086; margin-top: 1rem; font-family: sans-serif; }
.footer { border-top: 1px solid #313244; padding: 2rem; text-align: center; color: #6c7086; font-size: 13px; font-family: sans-serif; }
.footer a { color: #89b4fa; }
</style>
</head>
<body>
<nav class="nav">
<div class="nav-logo">
<div class="logo-mark">
<span><div class="dot"></div><div class="dot accent"></div><div class="dot"></div></span>
<span><div class="dot accent"></div><div class="dot"></div><div class="dot accent"></div></span>
<span><div class="dot"></div><div class="dot accent"></div><div class="dot"></div></span>
</div>
Elezaio Linux
</div>
<div class="nav-links">
<a href="#download">Download</a>
<a href="#features">Features</a>
<a href="https://github.com/elezaio-linux">GitHub</a>
<a href="https://github.com/elezaio-linux/mango-rac">Ractor</a>
</div>
</nav>
<div class="hero">
<div class="hero-badge">2026.3r11 "Nova" — Beta</div>
<h1>Linux for people<br>who <span>love simplicity</span></h1>
<p>A minimal Wayland desktop built on Debian, powered by MangoWC. Fast, beautiful, and yours to make your own.</p>
<div class="btn-row">
<a href="#download" class="btn btn-primary">Download ISO</a>
<a href="https://github.com/elezaio-linux" class="btn btn-secondary">View on GitHub</a>
</div>
<div class="terminal">
<div class="terminal-bar">
<div class="terminal-dot t-red"></div>
<div class="terminal-dot t-yellow"></div>
<div class="terminal-dot t-green"></div>
</div>
<div class="term-line"><span class="term-prompt">elezaio</span> <span class="term-out">~</span> <span class="term-cmd">fastfetch</span></div>
<div class="term-line"><span class="term-out">OS: Elezaio Linux 2026.3r11 Nova</span></div>
<div class="term-line"><span class="term-out">WM: MangoWC 0.12.6</span></div>
<div class="term-line"><span class="term-out">Shell: zsh + oh-my-zsh</span></div>
<div class="term-line"><span class="term-out">Kernel: Linux 6.12</span></div>
<div class="term-line" style="margin-top:8px"><span class="term-prompt">elezaio</span> <span class="term-out">~</span> <span class="term-cmd">ractor install mango</span></div>
<div class="term-line"><span class="term-success"> ✓ mango v0.12.6 installed successfully!</span></div>
</div>
</div>
<div class="section" id="features">
<div class="section-title">Why Elezaio?</div>
<div class="section-sub">Everything you need, nothing you don't.</div>
<div class="features">
<div class="feature-card">
<div class="feature-icon">⚡</div>
<h3>MangoWC desktop</h3>
<p>A fast, tiling Wayland compositor with blur, shadows, and smooth animations out of the box.</p>
</div>
<div class="feature-card">
<div class="feature-icon">📦</div>
<h3>Ractor packages</h3>
<p>Install apps with a single command using the .rac package format. Works on any distro.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔋</div>
<h3>Battery optimized</h3>
<p>TLP, zram, and smart power management built in. Longer battery life on laptops.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🎨</div>
<h3>Catppuccin themed</h3>
<p>Beautiful Catppuccin Frappé colors across the entire desktop — waybar, wofi, kitty.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🪶</div>
<h3>Lightweight</h3>
<p>Under 2GB ISO. Debian base with only what you need. Boots fast, runs smooth.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🛠</div>
<h3>Custom installer</h3>
<p>Simple TUI installer gets you up and running in minutes. No confusing options.</p>
</div>
</div>
</div>
<div class="section">
<div class="section-title">System specs</div>
<div class="section-sub">What's under the hood.</div>
<div class="specs">
<div class="spec-row"><span class="spec-label">Base</span><span class="spec-value">Debian Trixie 13.3.0</span></div>
<div class="spec-row"><span class="spec-label">Compositor</span><span class="spec-value">MangoWC 0.12.6</span></div>
<div class="spec-row"><span class="spec-label">Display protocol</span><span class="spec-value">Wayland</span></div>
<div class="spec-row"><span class="spec-label">Shell</span><span class="spec-value">zsh + oh-my-zsh</span></div>
<div class="spec-row"><span class="spec-label">Terminal</span><span class="spec-value">Kitty</span></div>
<div class="spec-row"><span class="spec-label">Package manager</span><span class="spec-value">apt + Ractor</span></div>
<div class="spec-row"><span class="spec-label">ISO size</span><span class="spec-value">~1.9 GB</span></div>
<div class="spec-row"><span class="spec-label">Architecture</span><span class="spec-value">x86_64</span></div>
</div>
</div>
<div class="section" id="download">
<div class="download">
<h2>Download Elezaio Linux</h2>
<p>Version 2026.3r11 "Nova" — Beta release</p>
<a href="https://github.com/elezaio-linux/elezaio/releases" class="btn btn-primary">Download ISO</a>
<div class="dl-meta">
<span>~1.9 GB</span>
<span>amd64</span>
<span>Debian base</span>
<span>Beta</span>
</div>
</div>
</div>
<div class="footer">
Built with love by <a href="https://github.com/CyberHuman-bot">yaman</a> ·
<a href="https://github.com/elezaio-linux">GitHub</a> ·
<a href="https://github.com/elezaio-linux/elezaio/issues">Report a bug</a>
</div>
</body>
</html>