-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
361 lines (318 loc) · 11.5 KB
/
home.html
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Privacyst - Home</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<style>
:root {
--bg-color: #0f172a;
--text-color: #e2e8f0;
--primary: #06b6d4;
--primary-dark: #0891b2;
--secondary: #3b82f6;
--accent: #22d3ee;
--card-bg: #1e293b;
}
body {
background: var(--bg-color);
color: var(--text-color);
font-family: 'Inter', system-ui, -apple-system, sans-serif;
margin: 0;
line-height: 1.6;
min-height: 100vh;
}
nav {
background: rgba(15, 23, 42, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding: 1.2rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.nav-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-brand {
color: var(--primary);
text-decoration: none;
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.nav-links {
display: flex;
gap: 1rem;
}
.nav-link {
color: var(--text-color);
text-decoration: none;
padding: 0.8rem 1.5rem;
border-radius: 8px;
transition: all 0.3s ease;
font-weight: 500;
}
.nav-link:hover {
color: var(--primary);
background: rgba(255, 255, 255, 0.05);
transform: translateY(-1px);
}
.container {
max-width: 1200px;
width: 90%;
margin: 0 auto;
padding: 4rem 1rem;
}
.hero {
text-align: center;
margin-bottom: 6rem;
animation: fadeIn 0.6s ease-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
font-size: 4rem;
font-weight: 700;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: -0.5px;
}
.hero p {
font-size: 1.5rem;
color: rgba(226, 232, 240, 0.9);
max-width: 600px;
margin: 0 auto 3rem;
}
.tools-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
}
.tool-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--primary);
display: inline-block;
}
.tool-icon i {
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.tool-card {
background: linear-gradient(145deg, var(--card-bg), #1a2234);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 2rem;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
gap: 1rem;
}
.tool-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
}
.tool-card h3 {
color: var(--primary);
font-size: 1.5rem;
margin: 0;
font-weight: 600;
}
.tool-card p {
color: rgba(226, 232, 240, 0.8);
margin: 0;
flex-grow: 1;
line-height: 1.6;
}
.tool-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--primary);
text-decoration: none;
padding: 0.8rem 1.5rem;
background: rgba(255, 255, 255, 0.03);
border-radius: 8px;
transition: all 0.3s ease;
font-weight: 500;
justify-content: center;
}
.tool-link:hover {
background: var(--primary);
color: var(--bg-color);
transform: translateY(-2px);
}
.features {
text-align: center;
margin-bottom: 6rem;
}
.features h2 {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 3rem;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.feature-card {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 2rem;
transition: all 0.3s ease;
}
.feature-card:hover {
transform: translateY(-3px);
background: rgba(255, 255, 255, 0.03);
}
.feature-icon {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 1rem;
}
.feature-icon i {
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
.nav-content {
flex-direction: column;
gap: 1rem;
text-align: center;
}
.nav-links {
flex-direction: column;
width: 100%;
}
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.2rem;
}
.tools-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<nav>
<div class="nav-content">
<a href="/" class="nav-brand">The Privacyst</a>
<div class="nav-links">
<a href="#tools" class="nav-link">Tools</a>
<a href="#features" class="nav-link">Features</a>
<a href="user_guide" class="nav-link">User Guide</a>
<a href="privacy_policy" class="nav-link">Privacy Policy</a>
<a href="about" class="nav-link">About</a>
</div>
</div>
</nav>
<div class="container">
<div class="hero">
<h1>The Privacyst</h1>
<p>Your secure gateway to privacy-focused data generation and encryption tools.</p>
</div>
<section id="tools" class="tools-grid">
<div class="tool-card">
<div class="tool-icon">
<i class="ph ph-password"></i>
</div>
<h3>Password Generator</h3>
<p>Create strong, cryptographically secure passwords that meet modern security standards. Customize length and character types for maximum security.</p>
<a href="password_generator" class="tool-link">Generate Password <i class="ph ph-arrow-right"></i></a>
</div>
<div class="tool-card">
<div class="tool-icon">
<i class="ph ph-key"></i>
</div>
<h3>SSH Key Generator</h3>
<p>Generate secure SSH key pairs using industry-standard algorithms like RSA, DSA, ECDSA, and Ed25519. Perfect for secure server access.</p>
<a href="ssh_key_generator" class="tool-link">Generate Keys <i class="ph ph-arrow-right"></i></a>
</div>
<div class="tool-card">
<div class="tool-icon">
<i class="ph ph-at"></i>
</div>
<h3>Email Generator</h3>
<p>Create realistic, randomly generated email addresses using common naming patterns. Choose from popular domains for testing purposes.</p>
<a href="email_generator" class="tool-link">Generate Email <i class="ph ph-arrow-right"></i></a>
</div>
<div class="tool-card">
<div class="tool-icon">
<i class="ph ph-user"></i>
</div>
<h3>Username Generator</h3>
<p>Create unique, professional-looking usernames that are both memorable and secure. Perfect for new account registrations.</p>
<a href="username_generator" class="tool-link">Generate Username <i class="ph ph-arrow-right"></i></a>
</div>
<div class="tool-card">
<div class="tool-icon">
<i class="ph ph-hash"></i>
</div>
<h3>Hash Generator</h3>
<p>Create cryptographic hashes using various algorithms including SHA-256, SHA-512, and more. Ideal for data integrity verification.</p>
<a href="hash_generator" class="tool-link">Generate Hash <i class="ph ph-arrow-right"></i></a>
</div>
</section>
<section id="features" class="features">
<h2>Why Choose The Privacyst?</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">
<i class="ph ph-shield-check"></i>
</div>
<h3>Client-Side Security</h3>
<p>All operations are performed locally in your browser, ensuring your data never leaves your device.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="ph ph-database"></i>
</div>
<h3>Zero Data Storage</h3>
<p>We don't store any of your generated data, maintaining complete privacy and security.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="ph ph-lightning"></i>
</div>
<h3>Fast & Efficient</h3>
<p>Lightning-fast generation of secure data with modern cryptographic standards.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="ph ph-arrows-clockwise"></i>
</div>
<h3>Regular Updates</h3>
<p>Continuous updates to maintain security standards and add new features.</p>
</div>
</div>
</section>
</div>
</body>
</html>