-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebsite.html
More file actions
552 lines (484 loc) Β· 17.7 KB
/
Website.html
File metadata and controls
552 lines (484 loc) Β· 17.7 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
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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Aiden | Your Private, Offline Productivity Assistant</title>
<style>
:root {
--primary: #2563EB; /* Professional Blue */
--primary-light: #3B82F6;
--primary-dark: #1D4ED8;
--accent: #0EA5E9; /* Sky Blue */
--dark: #0F172A; /* Slate 900 */
--dark-secondary: #1E293B; /* Slate 800 */
--dark-tertiary: #334155; /* Slate 700 */
--light: #F8FAFC;
--gray: #94A3B8; /* Slate 400 */
--text-light: #F1F5F9; /* Slate 100 */
--gradient-start: #1E40AF;
--gradient-end: #0EA5E9;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, sans-serif;
}
body {
background-color: var(--dark);
color: var(--text-light);
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
header {
background-color: var(--dark);
color: white;
padding: 20px 0;
border-bottom: 1px solid rgba(37, 99, 235, 0.3);
backdrop-filter: blur(10px);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0;
}
.logo {
font-size: 32px;
font-weight: 700;
display: flex;
align-items: center;
gap: 10px;
color: var(--primary);
letter-spacing: 1px;
}
.logo-dot {
color: var(--accent);
}
.nav-links {
display: flex;
gap: 40px;
}
.nav-links a {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
letter-spacing: 0.5px;
text-transform: uppercase;
font-size: 14px;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--primary), var(--accent));
transition: width 0.3s ease;
}
.nav-links a:hover {
color: var(--primary-light);
}
.nav-links a:hover::after {
width: 100%;
}
.cta-button {
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
color: white;
border: none;
padding: 12px 28px;
border-radius: 12px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
letter-spacing: 0.5px;
text-transform: uppercase;
font-size: 14px;
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
position: relative;
overflow: hidden;
}
.cta-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}
.cta-button:hover::before {
left: 100%;
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}
.hero {
padding: 100px 0 80px;
text-align: center;
background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 50%, var(--dark-tertiary) 100%);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
radial-gradient(circle at 70% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
}
.hero-content {
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 1;
}
h1 {
font-size: 54px;
margin-bottom: 20px;
color: white;
line-height: 1.2;
letter-spacing: 1px;
font-weight: 700;
}
h1 span {
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.tagline {
font-size: 22px;
color: var(--text-light);
margin-bottom: 50px;
letter-spacing: 0.5px;
}
.highlight {
color: var(--primary-light);
font-weight: 600;
}
.price-tag {
display: inline-block;
background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(14, 165, 233, 0.2) 100%);
backdrop-filter: blur(10px);
padding: 8px 20px;
border-radius: 25px;
margin-bottom: 30px;
color: var(--primary-light);
font-weight: 600;
border: 1px solid rgba(37, 99, 235, 0.3);
}
.price-tag .original {
text-decoration: line-through;
opacity: 0.7;
margin-left: 10px;
font-size: 0.9em;
}
.features {
padding: 100px 0;
background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark) 100%);
}
.section-title {
text-align: center;
font-size: 40px;
margin-bottom: 80px;
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: 1px;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
}
.feature-card {
background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(51, 65, 85, 0.4) 100%);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 40px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
transition: all 0.4s ease;
border: 1px solid rgba(37, 99, 235, 0.2);
position: relative;
overflow: hidden;
}
.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.feature-card:hover {
transform: translateY(-15px);
box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
border: 1px solid rgba(37, 99, 235, 0.4);
}
.feature-icon {
font-size: 42px;
margin-bottom: 25px;
color: var(--primary-light);
display: inline-block;
transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
transform: scale(1.1);
}
.feature-title {
font-size: 24px;
margin-bottom: 15px;
color: white;
letter-spacing: 0.5px;
}
.feature-description {
color: var(--gray);
margin-bottom: 20px;
font-size: 16px;
line-height: 1.7;
}
.privacy-banner {
background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
color: white;
padding: 80px 0;
text-align: center;
position: relative;
overflow: hidden;
}
.privacy-banner::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.privacy-title {
font-size: 32px;
margin-bottom: 20px;
color: white;
letter-spacing: 0.5px;
position: relative;
z-index: 1;
}
.privacy-icon {
font-size: 60px;
margin-bottom: 30px;
color: white;
position: relative;
z-index: 1;
display: inline-block;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.7; }
100% { opacity: 1; }
}
.privacy-description {
font-size: 18px;
max-width: 700px;
margin: 0 auto 20px;
line-height: 1.8;
position: relative;
z-index: 1;
}
.early-access {
padding: 100px 0;
text-align: center;
background: linear-gradient(180deg, var(--dark) 0%, var(--dark-secondary) 100%);
}
.early-access h2 {
font-size: 36px;
margin-bottom: 30px;
color: white;
}
.early-access p {
font-size: 18px;
max-width: 600px;
margin: 0 auto 40px;
color: var(--gray);
}
footer {
background-color: #020617;
color: white;
padding: 60px 0 40px;
text-align: center;
border-top: 1px solid rgba(37, 99, 235, 0.2);
}
.footer-links {
display: flex;
justify-content: center;
gap: 40px;
margin: 30px 0;
}
.footer-links a {
color: var(--gray);
text-decoration: none;
transition: all 0.3s ease;
text-transform: uppercase;
font-size: 14px;
letter-spacing: 1px;
position: relative;
}
.footer-links a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--primary), var(--accent));
transition: width 0.3s ease;
}
.footer-links a:hover {
color: var(--primary-light);
}
.footer-links a:hover::after {
width: 100%;
}
.copyright {
color: var(--gray);
font-size: 14px;
margin-top: 30px;
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
h1 {
font-size: 40px;
}
.tagline {
font-size: 18px;
}
.section-title {
font-size: 32px;
}
.features-grid {
grid-template-columns: 1fr;
}
.hero {
padding: 60px 0 40px;
}
.features {
padding: 60px 0;
}
.privacy-banner {
padding: 60px 0;
}
.early-access {
padding: 60px 0;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo">
AIDEN<span class="logo-dot">.</span>
</div>
<div class="nav-links">
<a href="#early-access">Early Access</a>
<a href="https://kpappworx.github.io/Aiden/privacypolicy.html">Privacy</a>
<a href="https://kpappworx.github.io/Aiden/support.html">Support</a>
</div>
<a href="https://apps.apple.com/in/app/aiden-ai/id6745358011" class="cta-button">Download Now</a>
</nav>
</div>
</header>
<div class="hero">
<div class="container">
<div class="hero-content">
<h1><span>Aiden</span>: Your Private, Offline Productivity Assistant</h1>
<p class="tagline">A <span class="highlight">fully offline, on-device assistant</span> that helps you organize and stay on top of your day without relying on the cloud.</p>
<div class="price-tag">Early Access: $29.99 <span class="original">$49.99</span></div>
<a href="https://apps.apple.com/in/app/aiden-ai/id6745358011" class="cta-button">Get Early Access</a>
</div>
</div>
</div>
<section class="features" id="features">
<div class="container">
<h2 class="section-title">Powerful Features</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">ποΈ</div>
<h3 class="feature-title">Smart Task Management</h3>
<p class="feature-description">Manage tasks, reminders, and meetings effortlessly with AI-powered organization and prioritization.</p>
</div>
<div class="feature-card">
<div class="feature-icon">ποΈ</div>
<h3 class="feature-title">Intelligent Notes</h3>
<p class="feature-description">Organize notes with AI-powered structure to quickly find and retrieve important information.</p>
</div>
<div class="feature-card">
<div class="feature-icon">π</div>
<h3 class="feature-title">Complete Privacy</h3>
<p class="feature-description">Keep everything private β no cloud sync, just on-device with Face ID protection for sensitive information.</p>
</div>
<div class="feature-card">
<div class="feature-icon">π</div>
<h3 class="feature-title">Offline Productivity</h3>
<p class="feature-description">Stay productive even offline β no internet required for any functionality. Work anywhere, anytime.</p>
</div>
</div>
</div>
</section>
<div class="privacy-banner" id="privacy">
<div class="container">
<div class="privacy-icon">π</div>
<h2 class="privacy-title">100% On-Device Processing</h2>
<p class="privacy-description">Everything runs entirely on your device, ensuring maximum privacy & speed.</p>
<p class="privacy-description">No data is ever sent to external servers or cloud-based AI.</p>
<a href="https://kpappworx.github.io/Aiden/privacypolicy.html" class="cta-button">Read Privacy Policy</a>
</div>
</div>
<section class="early-access" id="early-access">
<div class="container">
<h2>Limited Time Early Access</h2>
<p>Early access is now open for a one-time purchase of $29.99. The price will increase to $49.99 once it launches publicly.</p>
<a href="https://apps.apple.com/in/app/aiden-ai/id6745358011" class="cta-button">Get Started Now</a>
</div>
</section>
<footer>
<div class="container">
<div class="logo">
AIDEN<span class="logo-dot">.</span>
</div>
<div class="footer-links">
<a href="https://kpappworx.github.io/Aiden/privacypolicy.html">Privacy</a>
<a href="https://kpappworx.github.io/Aiden/support.html">Support</a>
</div>
<p class="copyright">Β© 2025 Aiden AI by Kanthipriya (KP). All rights reserved.</p>
<div style="margin-top: 20px; color: var(--gray); font-size: 14px;">
<p>Ready to experience the power of Aiden AI?</p>
<p>Visit our website: <a href="https://www.aidenai.com" style="color: var(--primary-light); text-decoration: none;">www.aidenai.com</a></p>
<p>Email us: <a href="mailto:info@aidenai.com" style="color: var(--primary-light); text-decoration: none;">info@aidenai.com</a></p>
<p>Call us: (555) 123-4567</p>
<p>Follow us on social media: <a href="https://www.linkedin.com/company/aidenai" style="color: var(--primary-light); text-decoration: none;">@AidenAI</a></p>
</div>
</div>
</footer>
</body>
</html>