-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
519 lines (468 loc) Β· 15.4 KB
/
Copy pathabout.html
File metadata and controls
519 lines (468 loc) Β· 15.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ShareHive - About</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: Arial, sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
transition: 0.3s;
}
:root {
--bg-color: #ffffff;
--text-color: #222;
--primary-color: #0077ff;
--sidebar-bg: #f4f4f4;
--card-bg: #f8f8f8;
}
body.dark {
--bg-color: #1e1e1e;
--text-color: #f0f0f0;
--sidebar-bg: #2c2c2c;
--card-bg: #333333;
}
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; background: var(--primary-color); color: white; }
.navbar h1 { font-size: 20px; }
.toggle-btn { background: white; border: none; color: var(--primary-color); padding: 5px 10px; border-radius: 5px; cursor: pointer; font-weight: bold; }
.container { display: flex; height: calc(100vh - 50px); }
.sidebar { width: 220px; background: var(--sidebar-bg); padding: 20px; overflow-y: auto; }
.sidebar h2 { font-size: 16px; margin-bottom: 10px; }
.sidebar a { display: block; text-decoration: none; color: var(--text-color); padding: 8px 10px; border-radius: 5px; margin-bottom: 5px; }
.sidebar a:hover { background: var(--primary-color); color: white; }
.main { flex: 1; padding: 20px; overflow-y: auto; }
h2 { margin: 15px 0; }
.card {
background: var(--card-bg);
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0,119,255,0.2);
}
/* Hero Section */
.hero-card {
background: linear-gradient(135deg, var(--primary-color), #0055cc);
color: white;
text-align: center;
padding: 40px 20px;
position: relative;
overflow: hidden;
}
.hero-card::before {
content: "π";
position: absolute;
font-size: 200px;
opacity: 0.1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.hero-card h2 {
font-size: 32px;
margin-bottom: 15px;
position: relative;
z-index: 1;
}
.hero-card p {
font-size: 18px;
line-height: 1.6;
position: relative;
z-index: 1;
}
/* Stats Section */
.stats-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
margin-bottom: 20px;
}
.stat-card {
background: var(--card-bg);
padding: 25px;
border-radius: 10px;
text-align: center;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
transition: all 0.3s ease;
border: 2px solid transparent;
}
.stat-card:hover {
border-color: var(--primary-color);
transform: scale(1.05);
}
.stat-card .number {
font-size: 36px;
font-weight: bold;
color: var(--primary-color);
display: block;
margin-bottom: 8px;
}
.stat-card .label {
font-size: 14px;
opacity: 0.8;
}
/* Features Grid */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
margin-top: 20px;
}
.feature-item {
background: var(--card-bg);
padding: 20px;
border-radius: 10px;
border-left: 4px solid var(--primary-color);
transition: all 0.3s ease;
}
.feature-item:hover {
background: var(--primary-color);
color: white;
transform: translateX(10px);
}
.feature-item h3 {
margin-bottom: 10px;
font-size: 18px;
}
.feature-item p {
font-size: 14px;
line-height: 1.6;
opacity: 0.9;
}
/* Timeline */
.timeline {
position: relative;
padding-left: 30px;
margin-top: 20px;
}
.timeline::before {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 3px;
background: var(--primary-color);
}
.timeline-item {
position: relative;
margin-bottom: 30px;
padding-left: 20px;
}
.timeline-item::before {
content: "";
position: absolute;
left: -33px;
top: 5px;
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--primary-color);
border: 3px solid var(--bg-color);
box-shadow: 0 0 0 3px var(--primary-color);
}
.timeline-item h3 {
color: var(--primary-color);
margin-bottom: 5px;
}
.timeline-item p {
line-height: 1.6;
opacity: 0.9;
}
/* Values Section */
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
margin-top: 20px;
}
.value-card {
text-align: center;
padding: 30px 20px;
background: var(--card-bg);
border-radius: 10px;
transition: all 0.3s ease;
}
.value-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,119,255,0.15);
}
.value-card .icon {
font-size: 48px;
margin-bottom: 15px;
display: block;
}
.value-card h3 {
margin-bottom: 10px;
color: var(--primary-color);
}
.value-card p {
font-size: 14px;
line-height: 1.6;
opacity: 0.8;
}
/* Highlight Box */
.highlight {
background: linear-gradient(135deg, rgba(0,119,255,0.1), rgba(0,85,204,0.1));
padding: 20px;
border-radius: 10px;
border-left: 5px solid var(--primary-color);
margin: 20px 0;
}
.highlight h3 {
color: var(--primary-color);
margin-bottom: 10px;
}
/* Responsive */
@media (max-width: 768px) {
.container { flex-direction: column; }
.sidebar { width: 100%; }
.stats-container { grid-template-columns: repeat(2, 1fr); }
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.card {
animation: fadeInUp 0.6s ease-out backwards;
}
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }
ul {
padding-left: 20px;
line-height: 2;
}
ul li {
margin-bottom: 8px;
}
</style>
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<h1>π ShareHive - About</h1>
<button class="toggle-btn" onclick="toggleTheme()">π</button>
</div>
<div class="container">
<!-- Sidebar -->
<div class="sidebar">
<h2>Menu</h2>
<a href="index.html">π Dashboard</a>
<a href="notes.html">π Notes</a>
<a href="bookmarks.html">π Bookmarks</a>
<a href="videos.html">π¬ Video Links</a>
<a href="expenses.html">π° Expense Tracker</a>
<a href="planner.html">π
Planner</a>
<a href="uploads.html">π Upload Files</a>
<a href="projects.html">π Projects</a>
<a href="watchlist.html">π₯ Watchlist</a>
<a href="courses.html">π Courses</a>
<a href="profile.html">π€ Profile</a>
<a href="settings.html">βοΈ Settings</a>
<hr>
<a href="about.html">βΉοΈ About</a>
<a href="help.html">β Help</a>
<a href="faq.html">β FAQ</a>
<a href="blog.html">π° Blog</a>
<a href="contact.html">βοΈ Contact</a>
<a href="join.html">π€ Join Us</a>
<a href="report.html">π Report</a>
<a href="privacy.html">π Privacy & Policy</a>
<a href="community.html">π Community</a>
</div>
<!-- Main -->
<div class="main">
<!-- Hero Section -->
<div class="card hero-card">
<h2>About ShareHive</h2>
<p>π <strong>ShareHive</strong> is your all-in-one personal management system β notes, bookmarks, videos, to-do lists, expenses, planning, wiki, uploads, projects, courses, and more β everything organized in one place.</p>
</div>
<!-- Stats Section -->
<div class="stats-container">
<div class="stat-card">
<span class="number">13+</span>
<span class="label">Features</span>
</div>
<div class="stat-card">
<span class="number">100%</span>
<span class="label">Private</span>
</div>
<div class="stat-card">
<span class="number">β</span>
<span class="label">Possibilities</span>
</div>
<div class="stat-card">
<span class="number">0$</span>
<span class="label">Cost</span>
</div>
</div>
<!-- Mission -->
<div class="card">
<h2>π― Our Mission</h2>
<p>To simplify productivity and knowledge management by offering an integrated, user-friendly tool accessible right from your browser.</p>
<div class="highlight">
<h3>Vision for the Future</h3>
<p>We envision ShareHive becoming the ultimate personal productivity hub where users can seamlessly manage every aspect of their digital life without compromising privacy or simplicity.</p>
</div>
</div>
<!-- Why ShareHive -->
<div class="card">
<h2>π‘ Why ShareHive?</h2>
<ul>
<li>β
Keep all your personal data in one place.</li>
<li>β
Privacy-first, stored in your browser using IndexedDB.</li>
<li>β
Easy, clean, and intuitive design.</li>
<li>β
Expandable for more features in the future.</li>
<li>β
No registration or login required.</li>
<li>β
Works offline - no internet dependency.</li>
<li>β
Completely free and open to use.</li>
<li>β
Dark mode for comfortable viewing.</li>
</ul>
</div>
<!-- Core Values -->
<div class="card">
<h2>π Our Core Values</h2>
<div class="values-grid">
<div class="value-card">
<span class="icon">π</span>
<h3>Privacy First</h3>
<p>Your data stays in your browser. We don't collect, store, or transmit your personal information.</p>
</div>
<div class="value-card">
<span class="icon">β‘</span>
<h3>Simplicity</h3>
<p>Clean, intuitive interface that anyone can use without a steep learning curve.</p>
</div>
<div class="value-card">
<span class="icon">π</span>
<h3>Innovation</h3>
<p>Constantly evolving with new features to meet your productivity needs.</p>
</div>
<div class="value-card">
<span class="icon">π</span>
<h3>Accessibility</h3>
<p>Free for everyone, anywhere, on any modern browser.</p>
</div>
</div>
</div>
<!-- Key Features -->
<div class="card">
<h2>π Key Features</h2>
<div class="features-grid">
<div class="feature-item">
<h3>π Smart Notes</h3>
<p>Organize your thoughts with our intuitive note-taking system.</p>
</div>
<div class="feature-item">
<h3>π Bookmarks Manager</h3>
<p>Save and categorize your favorite websites effortlessly.</p>
</div>
<div class="feature-item">
<h3>π° Expense Tracking</h3>
<p>Monitor your spending and manage your budget effectively.</p>
</div>
<div class="feature-item">
<h3>β
Task Management</h3>
<p>Stay on top of your to-do lists and boost productivity.</p>
</div>
<div class="feature-item">
<h3>π
Smart Planner</h3>
<p>Plan your days, weeks, and months with ease.</p>
</div>
<div class="feature-item">
<h3>π Course Tracker</h3>
<p>Keep track of your learning journey and courses.</p>
</div>
<div class="feature-item">
<h3>π Project Manager</h3>
<p>Manage multiple projects in one organized space.</p>
</div>
<div class="feature-item">
<h3>π¬ Media Library</h3>
<p>Curate your watchlist and video collections.</p>
</div>
</div>
</div>
<!-- Development Timeline -->
<div class="card">
<h2>π
Development Journey</h2>
<div class="timeline">
<div class="timeline-item">
<h3>Version 1.0 - Foundation</h3>
<p>Launched core features including notes, bookmarks, and to-do lists with basic functionality.</p>
</div>
<div class="timeline-item">
<h3>Version 1.5 - Expansion</h3>
<p>Added expense tracker, planner, and wiki features. Introduced dark mode for better user experience.</p>
</div>
<div class="timeline-item">
<h3>Version 2.0 - Enhancement</h3>
<p>Integrated file uploads, project management, watchlist, and courses. Improved UI/UX across all modules.</p>
</div>
<div class="timeline-item">
<h3>Future - Innovation</h3>
<p>Planning collaboration features, cloud sync options, mobile app, and AI-powered suggestions.</p>
</div>
</div>
</div>
<!-- Technology Stack -->
<div class="card">
<h2>π οΈ Built With</h2>
<p>ShareHive is built using modern web technologies to ensure performance, reliability, and security:</p>
<div class="features-grid" style="margin-top: 15px;">
<div class="feature-item">
<h3>HTML5</h3>
<p>Semantic markup for better structure and accessibility.</p>
</div>
<div class="feature-item">
<h3>CSS3</h3>
<p>Modern styling with custom properties and animations.</p>
</div>
<div class="feature-item">
<h3>JavaScript</h3>
<p>Vanilla JS for lightweight, fast performance.</p>
</div>
<div class="feature-item">
<h3>IndexedDB</h3>
<p>Client-side storage for privacy and offline capability.</p>
</div>
</div>
</div>
<!-- Community -->
<div class="card">
<h2>π€ Join Our Community</h2>
<p>ShareHive is more than just a toolβit's a community of productivity enthusiasts. We welcome feedback, suggestions, and contributions to make ShareHive better for everyone.</p>
<div class="highlight">
<h3>Get Involved</h3>
<p>Have ideas for new features? Found a bug? Want to contribute? Visit our <a href="community.html" style="color: var(--primary-color); text-decoration: underline;">Community</a> page or <a href="contact.html" style="color: var(--primary-color); text-decoration: underline;">Contact Us</a> directly!</p>
</div>
</div>
</div>
</div>
<script>
// Dark Mode
function toggleTheme() {
document.body.classList.toggle("dark");
localStorage.setItem("theme", document.body.classList.contains("dark") ? "dark" : "light");
}
if(localStorage.getItem("theme") === "dark") document.body.classList.add("dark");
</script>
</body>
</html>