Skip to content

Commit c18bc0a

Browse files
committed
Added pages files to main repository
1 parent c727df4 commit c18bc0a

5 files changed

Lines changed: 804 additions & 0 deletions

File tree

pages/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
zep.ftp.sh

pages/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 NexusCLI
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

pages/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Github Pages site for the Zephyrus CLI
2+
3+
Link to the [Zephyrus CLI](https://github.com/zephyrus-development/zephyrus-cli).

pages/index.html

Lines changed: 227 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,227 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Zephyrus CLI - Encrypted File Vault</title>
7+
<style>
8+
* {
9+
margin: 0;
10+
padding: 0;
11+
box-sizing: border-box;
12+
}
13+
14+
body {
15+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
16+
background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
17+
color: #e0e0e0;
18+
min-height: 100vh;
19+
display: flex;
20+
align-items: center;
21+
justify-content: center;
22+
padding: 20px;
23+
}
24+
25+
.container {
26+
max-width: 800px;
27+
width: 100%;
28+
}
29+
30+
header {
31+
text-align: center;
32+
margin-bottom: 60px;
33+
}
34+
35+
.logo {
36+
font-size: 48px;
37+
margin-bottom: 20px;
38+
}
39+
40+
h1 {
41+
font-size: 3.5rem;
42+
margin-bottom: 10px;
43+
background: linear-gradient(135deg, #7431ff 0%, #9d6eff 100%);
44+
-webkit-background-clip: text;
45+
-webkit-text-fill-color: transparent;
46+
background-clip: text;
47+
}
48+
49+
.tagline {
50+
font-size: 1.3rem;
51+
color: #a0a0a0;
52+
margin-bottom: 40px;
53+
}
54+
55+
.description {
56+
background: rgba(116, 49, 255, 0.05);
57+
border: 1px solid rgba(116, 49, 255, 0.2);
58+
border-radius: 12px;
59+
padding: 30px;
60+
margin-bottom: 50px;
61+
line-height: 1.8;
62+
font-size: 1.1rem;
63+
}
64+
65+
.description strong {
66+
color: #7431ff;
67+
}
68+
69+
.features {
70+
display: grid;
71+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
72+
gap: 20px;
73+
margin-bottom: 50px;
74+
}
75+
76+
.feature {
77+
background: rgba(116, 49, 255, 0.08);
78+
border-left: 3px solid #7431ff;
79+
padding: 15px;
80+
border-radius: 8px;
81+
}
82+
83+
.feature-title {
84+
color: #7431ff;
85+
font-weight: 600;
86+
margin-bottom: 8px;
87+
}
88+
89+
.feature-text {
90+
font-size: 0.95rem;
91+
color: #c0c0c0;
92+
}
93+
94+
.links {
95+
display: grid;
96+
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
97+
gap: 20px;
98+
}
99+
100+
.link-btn {
101+
display: flex;
102+
flex-direction: column;
103+
align-items: center;
104+
justify-content: center;
105+
padding: 30px;
106+
background: rgba(116, 49, 255, 0.1);
107+
border: 2px solid #7431ff;
108+
border-radius: 12px;
109+
color: #e0e0e0;
110+
text-decoration: none;
111+
transition: all 0.3s ease;
112+
cursor: pointer;
113+
gap: 12px;
114+
}
115+
116+
.link-btn:hover {
117+
background: #7431ff;
118+
transform: translateY(-5px);
119+
box-shadow: 0 20px 40px rgba(116, 49, 255, 0.3);
120+
}
121+
122+
.link-icon {
123+
font-size: 2rem;
124+
}
125+
126+
.link-title {
127+
font-size: 1.1rem;
128+
font-weight: 600;
129+
}
130+
131+
.link-description {
132+
font-size: 0.85rem;
133+
color: #a0a0a0;
134+
text-align: center;
135+
}
136+
137+
.link-btn:hover .link-description {
138+
color: #e0e0e0;
139+
}
140+
141+
footer {
142+
text-align: center;
143+
margin-top: 80px;
144+
padding-top: 40px;
145+
border-top: 1px solid rgba(116, 49, 255, 0.2);
146+
color: #808080;
147+
font-size: 0.95rem;
148+
}
149+
150+
.accent {
151+
color: #7431ff;
152+
}
153+
154+
@media (max-width: 600px) {
155+
h1 {
156+
font-size: 2.5rem;
157+
}
158+
159+
.tagline {
160+
font-size: 1.1rem;
161+
}
162+
163+
.description {
164+
padding: 20px;
165+
}
166+
167+
.links {
168+
grid-template-columns: 1fr;
169+
}
170+
}
171+
</style>
172+
</head>
173+
<body>
174+
<div class="container">
175+
<header>
176+
<div class="logo">🔐</div>
177+
<h1>Zephyrus CLI</h1>
178+
<p class="tagline">Your GitHub, Your Vault, Your Rules</p>
179+
</header>
180+
181+
<div class="description">
182+
<strong>Zephyrus CLI</strong> transforms your GitHub repository into a private, encrypted file vault.
183+
Store sensitive documents, backups, and confidential files with <strong>AES-256-GCM encryption</strong>—all from your command line.
184+
No subscriptions. No proprietary infrastructure. No secrets to trust anyone with.
185+
</div>
186+
187+
<div class="features">
188+
<div class="feature">
189+
<div class="feature-title">🔑 Per-File Keys</div>
190+
<div class="feature-text">Share individual files without exposing your entire vault</div>
191+
</div>
192+
<div class="feature">
193+
<div class="feature-title">☁️ GitHub Backed</div>
194+
<div class="feature-text">Leverage GitHub's infrastructure for encrypted storage</div>
195+
</div>
196+
<div class="feature">
197+
<div class="feature-title">🛡️ Zero-Knowledge</div>
198+
<div class="feature-text">We can't access your data. You control everything</div>
199+
</div>
200+
</div>
201+
202+
<div class="links">
203+
<a href="https://github.com/zephyrus-development/zephyrus-cli/wiki/WHITEPAPER" class="link-btn">
204+
<div class="link-icon">📘</div>
205+
<div class="link-title">Whitepaper</div>
206+
<div class="link-description">Technical architecture & cryptography</div>
207+
</a>
208+
<a href="https://github.com/zephyrus-development/zephyrus-cli/releases" class="link-btn">
209+
<div class="link-icon">🚀</div>
210+
<div class="link-title">Latest Release</div>
211+
<div class="link-description">Download v1.0.0 and release notes</div>
212+
</a>
213+
<a href="https://github.com/zephyrus-development/zephyrus-cli" class="link-btn">
214+
<div class="link-icon">💻</div>
215+
<div class="link-title">Source Code</div>
216+
<div class="link-description">View on GitHub, fork, contribute</div>
217+
</a>
218+
</div>
219+
220+
<footer>
221+
<p>Made with ❤️ for the privacy-conscious community</p>
222+
<p>© 2026 Zephyrus CLI. MIT License.</p>
223+
</footer>
224+
</div>
225+
</body>
226+
</html>
227+

0 commit comments

Comments
 (0)