-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
1031 lines (1004 loc) · 36.7 KB
/
Copy pathabout.html
File metadata and controls
1031 lines (1004 loc) · 36.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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#ff6b35" />
<meta name="keywords" content="about transparent clock, clock overlay app, pomodoro timer, focus insights, productivity software, source available, privacy first, uptodown, windows app, prep meter, war mode" />
<meta name="author" content="Deep Dey / QuickLink" />
<meta name="robots" content="index, follow" />
<title>About Transparent Clock — Source-Available Productivity Companion</title>
<meta name="description" content="Everything about Transparent Clock: features, architecture, privacy-first design, Uptodown listing, version history, and community. Free, source-available Windows productivity app." />
<meta property="og:title" content="About Transparent Clock — Productivity Redefined" />
<meta property="og:description" content="Discover Transparent Clock: a free, source-available clock overlay with Pomodoro, Focus Insights, Prep-Meter, To-Do, and zero data collection." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://clock.qlynk.me/About.html" />
<meta property="og:image" content="https://clock.qlynk.me/assets/images/hero.png" />
<meta property="og:site_name" content="Transparent Clock" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="About Transparent Clock" />
<meta name="twitter:description" content="Free Windows clock overlay with Pomodoro, focus analytics, Prep-Meter, and zero data collection." />
<meta name="twitter:image" content="https://clock.qlynk.me/assets/images/hero.png" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="icon" href="assets/images/logo.png" />
<link rel="canonical" href="https://clock.qlynk.me/About.html" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"name": "Deep Dey / QuickLink",
"url": "https://clock.qlynk.me",
"logo": "https://clock.qlynk.me/assets/images/logo.png",
"sameAs": [
"https://qlynk.vercel.app",
"https://github.com/deepdeyiitgn",
"https://www.youtube.com/channel/UCrh1Mx5CTTbbkgW5O6iS2Tw"
]
},
{
"@type": "SoftwareApplication",
"name": "Transparent Clock",
"operatingSystem": "Windows 10/11",
"applicationCategory": "ProductivityApplication",
"softwareVersion": "v25.05.2026",
"downloadUrl": "https://github.com/deepdeyiitgn/Clock-Overlays/releases/tag/v04.04.2026",
"screenshot": "https://clock.qlynk.me/assets/images/hero.png",
"author": { "@type": "Person", "name": "Deep Dey" },
"publisher": { "@type": "Organization", "name": "Deep Dey / QuickLink" },
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" },
"license": "https://github.com/deepdeyiitgn/Clock-Overlays/blob/main/LICENSE",
"conditionsOfAccess": "Source code viewable for learning and security review only. Copying, redistribution, and derivative works prohibited.",
"copyrightHolder": { "@type": "Person", "name": "Deep Dey" },
"copyrightYear": "2026",
"isAccessibleForFree": true,
"featureList": "Clock Overlay, Pomodoro Timer, Prep-Meter, To-Do List, Focus Insights, QR Tools, QuickLink URL Shortener"
},
{
"@type": "AboutPage",
"name": "About Transparent Clock",
"url": "https://clock.qlynk.me/About.html",
"description": "Complete information about Transparent Clock software."
},
{
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://clock.qlynk.me/" },
{ "@type": "ListItem", "position": 2, "name": "About", "item": "https://clock.qlynk.me/About.html" }
]
}
]
}
</script>
<style>
.about-hero {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
padding: 80px 0 60px;
text-align: center;
color: #fff;
position: relative;
overflow: hidden;
}
.about-hero::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle at 30% 70%, rgba(255,107,53,0.08) 0%, transparent 50%),
radial-gradient(circle at 70% 30%, rgba(255,107,53,0.06) 0%, transparent 50%);
animation: heroFloat 20s ease-in-out infinite;
}
@keyframes heroFloat {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(-20px, 10px); }
}
.about-hero .container { position: relative; z-index: 2; }
.about-hero-logo {
width: 120px;
height: 120px;
border-radius: 28px;
box-shadow: 0 8px 32px rgba(255,107,53,0.3);
margin-bottom: 24px;
}
.about-hero h1 {
font-size: 2.8rem;
font-weight: 800;
margin-bottom: 12px;
background: linear-gradient(135deg, #fff, #ff6b35);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.about-hero .tagline {
font-size: 1.15rem;
color: rgba(255,255,255,0.8);
max-width: 600px;
margin: 0 auto 30px;
line-height: 1.6;
}
.hero-badges {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
}
.hero-badge {
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.15);
padding: 8px 20px;
border-radius: 50px;
font-size: 13px;
color: rgba(255,255,255,0.9);
backdrop-filter: blur(10px);
}
.hero-badge strong { color: #ff6b35; }
/* Stats Bar */
.stats-bar {
background: #fff;
border-bottom: 1px solid #eee;
padding: 30px 0;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 20px;
text-align: center;
}
.stat-item .stat-num {
font-size: 2rem;
font-weight: 800;
color: #ff6b35;
display: block;
}
.stat-item .stat-label {
font-size: 13px;
color: #666;
margin-top: 4px;
}
/* Section Styling */
.about-section {
padding: 60px 0;
}
.about-section:nth-child(even) {
background: #f8f9fa;
}
.section-header {
text-align: center;
margin-bottom: 40px;
}
.section-header h2 {
font-size: 2rem;
color: #1a1a2e;
margin-bottom: 10px;
}
.section-header p {
color: #666;
max-width: 600px;
margin: 0 auto;
font-size: 15px;
}
.section-badge {
display: inline-block;
background: linear-gradient(135deg, #ff6b35, #e55a2b);
color: #fff;
padding: 4px 14px;
border-radius: 20px;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 12px;
}
/* Feature Grid */
.feature-showcase {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.feature-card {
background: #fff;
border: 1px solid #e8e8e8;
border-radius: 16px;
padding: 28px;
transition: transform 0.3s, box-shadow 0.3s;
position: relative;
overflow: hidden;
}
.feature-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #ff6b35, #ff8f65);
}
.feature-icon {
font-size: 2.2rem;
margin-bottom: 14px;
display: block;
}
.feature-card h3 {
font-size: 1.1rem;
color: #1a1a2e;
margin-bottom: 8px;
}
.feature-card p {
font-size: 13.5px;
color: #555;
line-height: 1.6;
}
.feature-tag {
display: inline-block;
margin-top: 10px;
font-size: 11px;
background: #f0f0f0;
color: #666;
padding: 3px 10px;
border-radius: 12px;
}
/* Architecture */
.arch-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
align-items: center;
}
.arch-diagram {
background: #1a1a2e;
border-radius: 16px;
padding: 30px;
color: #fff;
font-family: 'Courier New', monospace;
font-size: 13px;
line-height: 1.8;
}
.arch-diagram .layer {
background: rgba(255,107,53,0.12);
border: 1px solid rgba(255,107,53,0.3);
border-radius: 8px;
padding: 10px 16px;
margin-bottom: 8px;
text-align: center;
}
.arch-diagram .layer-label {
color: #ff6b35;
font-weight: 700;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 1px;
}
.arch-info h3 {
font-size: 1.3rem;
margin-bottom: 16px;
color: #1a1a2e;
}
.arch-list {
list-style: none;
padding: 0;
}
.arch-list li {
padding: 10px 0;
border-bottom: 1px solid #eee;
font-size: 14px;
color: #444;
}
.arch-list li strong {
color: #1a1a2e;
}
/* Privacy */
.privacy-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.privacy-card {
text-align: center;
padding: 28px 20px;
border-radius: 16px;
background: #fff;
border: 2px solid #e8e8e8;
transition: border-color 0.3s;
}
.privacy-card:hover {
border-color: #ff6b35;
}
.privacy-icon {
font-size: 2.4rem;
margin-bottom: 12px;
}
.privacy-card h4 {
font-size: 1rem;
color: #1a1a2e;
margin-bottom: 6px;
}
.privacy-card p {
font-size: 12.5px;
color: #666;
line-height: 1.5;
}
/* Uptodown */
.uptodown-section {
background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
padding: 60px 0;
color: #fff;
}
.uptodown-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}
.uptodown-info h2 {
font-size: 2rem;
margin-bottom: 16px;
color: #fff;
}
.uptodown-info h2 span { color: #00d4aa; }
.uptodown-info p {
color: rgba(255,255,255,0.8);
font-size: 15px;
line-height: 1.7;
margin-bottom: 16px;
}
.uptodown-badges {
display: flex;
gap: 12px;
flex-wrap: wrap;
margin-top: 20px;
}
.ut-badge {
background: rgba(0,212,170,0.15);
border: 1px solid rgba(0,212,170,0.3);
color: #00d4aa;
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}
.uptodown-screenshot {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.4);
border: 2px solid rgba(255,255,255,0.1);
}
.uptodown-screenshot img {
width: 100%;
height: auto;
display: block;
}
.uptodown-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-top: 30px;
}
.ut-stat {
text-align: center;
padding: 16px;
background: rgba(255,255,255,0.05);
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.1);
}
.ut-stat .num {
font-size: 1.6rem;
font-weight: 800;
color: #00d4aa;
}
.ut-stat .label {
font-size: 12px;
color: rgba(255,255,255,0.6);
margin-top: 4px;
}
/* Why Special */
.why-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.why-card {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 12px;
padding: 20px;
}
.why-card h4 {
color: #00d4aa;
font-size: 0.95rem;
margin-bottom: 6px;
}
.why-card p {
color: rgba(255,255,255,0.7);
font-size: 13px;
line-height: 1.5;
}
/* Timeline */
.timeline {
position: relative;
max-width: 700px;
margin: 0 auto;
}
.timeline::before {
content: '';
position: absolute;
left: 20px;
top: 0;
bottom: 0;
width: 3px;
background: linear-gradient(180deg, #ff6b35, #e55a2b);
border-radius: 3px;
}
.timeline-item {
position: relative;
padding-left: 56px;
margin-bottom: 30px;
}
.timeline-item::before {
content: '';
position: absolute;
left: 13px;
top: 6px;
width: 17px;
height: 17px;
background: #ff6b35;
border-radius: 50%;
border: 3px solid #fff;
box-shadow: 0 0 0 3px #ff6b35;
}
.timeline-date {
font-size: 12px;
color: #ff6b35;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
}
.timeline-title {
font-size: 1.05rem;
font-weight: 700;
color: #1a1a2e;
margin: 4px 0;
}
.timeline-desc {
font-size: 13.5px;
color: #555;
line-height: 1.5;
}
/* Tech Stack */
.tech-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}
.tech-card {
text-align: center;
padding: 24px 16px;
background: #fff;
border-radius: 12px;
border: 1px solid #e8e8e8;
transition: transform 0.3s;
}
.tech-card:hover {
transform: translateY(-3px);
}
.tech-emoji {
font-size: 2rem;
margin-bottom: 8px;
}
.tech-card h4 {
font-size: 0.9rem;
color: #1a1a2e;
margin-bottom: 4px;
}
.tech-card p {
font-size: 12px;
color: #888;
}
/* CTA */
.cta-section {
background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
padding: 60px 0;
text-align: center;
color: #fff;
}
.cta-section h2 {
font-size: 2rem;
margin-bottom: 12px;
}
.cta-section p {
font-size: 15px;
opacity: 0.9;
margin-bottom: 30px;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
.cta-buttons {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
}
.cta-btn {
padding: 14px 32px;
border-radius: 8px;
font-weight: 700;
font-size: 15px;
text-decoration: none;
transition: transform 0.2s;
display: inline-block;
}
.cta-btn:hover { transform: translateY(-2px); }
.cta-btn-primary {
background: #fff;
color: #ff6b35;
}
.cta-btn-secondary {
background: rgba(255,255,255,0.15);
color: #fff;
border: 2px solid rgba(255,255,255,0.4);
}
/* Responsive */
@media (max-width: 768px) {
.about-hero h1 { font-size: 2rem; }
.stats-grid { grid-template-columns: repeat(3, 1fr); }
.feature-showcase { grid-template-columns: 1fr; }
.arch-grid { grid-template-columns: 1fr; }
.privacy-grid { grid-template-columns: repeat(2, 1fr); }
.uptodown-grid { grid-template-columns: 1fr; }
.uptodown-screenshot { order: -1; }
.why-grid { grid-template-columns: 1fr; }
.tech-grid { grid-template-columns: repeat(2, 1fr); }
.timeline::before { left: 14px; }
.timeline-item { padding-left: 46px; }
.timeline-item::before { left: 8px; }
}
@media (max-width: 480px) {
.stats-grid { grid-template-columns: repeat(2, 1fr); }
.privacy-grid { grid-template-columns: 1fr; }
.hero-badges { flex-direction: column; align-items: center; }
}
</style>
<!-- =========== Google Ads Scripts And Meta Tags [START] ============-->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2533086861741403"
crossorigin="anonymous"></script>
<meta name="google-adsense-account" content="ca-pub-2533086861741403">
<!-- =========== Google Ads Scripts And Meta Tags [END] ============-->
</head>
<body>
<header class="nav">
<div class="container nav-inner">
<a class="brand" href="index.html">
<img src="assets/images/logo.png" alt="Transparent Clock logo" />
Transparent Clock
</a>
<nav>
<button class="nav-toggle" aria-label="Toggle navigation">Menu</button>
<div class="nav-links">
<a href="features.html">Features</a>
<a href="download.html">Download</a>
<a href="faq.html">FAQ</a>
<a href="About.html">About</a>
<a href="About-Deep.html">Author</a>
<a href="contact.html">Contact</a>
</div>
</nav>
</div>
</header>
<section class="about-hero">
<div class="container">
<img src="assets/images/logo.png" alt="Transparent Clock Logo" class="about-hero-logo" />
<h1>Transparent Clock</h1>
<p class="tagline">A minimal, offline-first clock overlay and focus companion built for students who want distraction-free productivity. Free, source-available, and privacy-first.</p>
<div class="hero-badges">
<span class="hero-badge"><strong>v25.05.2026</strong> Stable</span>
<span class="hero-badge" style="border-color: rgba(231,76,60,0.5); background: rgba(231,76,60,0.15);"><strong style="color: #ff6b6b;">V05.04.2026</strong> War Mode</span>
<span class="hero-badge"><strong>100%</strong> Free & Source-Available</span>
<span class="hero-badge"><strong>Zero</strong> Data Collection</span>
<span class="hero-badge"><strong>Windows</strong> 10/11</span>
</div>
</div>
</section>
<section class="stats-bar">
<div class="container">
<div class="stats-grid">
<div class="stat-item">
<span class="stat-num">12+</span>
<span class="stat-label">Built-in Features</span>
</div>
<div class="stat-item">
<span class="stat-num">0</span>
<span class="stat-label">Data Collected</span>
</div>
<div class="stat-item">
<span class="stat-num">100%</span>
<span class="stat-label">Offline Core</span>
</div>
<div class="stat-item">
<span class="stat-num">Custom</span>
<span class="stat-label">Source-Available License</span>
</div>
<div class="stat-item">
<span class="stat-num">4.5★</span>
<span class="stat-label">Uptodown Rating</span>
</div>
</div>
</div>
</section>
<section class="about-section">
<div class="container">
<div class="section-header">
<span class="section-badge">Overview</span>
<h2>What is Transparent Clock?</h2>
<p>More than just a clock — it's your complete focus companion for distraction-free study sessions.</p>
</div>
<div style="max-width:800px;margin:0 auto;font-size:15px;line-height:1.8;color:#444;">
<p><strong>Transparent Clock</strong> (also known as <em>Clock Overlays</em>) is a lightweight Windows desktop application that keeps a minimal, always-on-top clock visible on your screen at all times. But it's much more than a simple clock.</p>
<p>Behind the transparent overlay lies a calm, organized dashboard packed with productivity tools: a <strong>Pomodoro timer</strong> for focused work sessions, the hardcore <strong>Prep-Meter (War Mode)</strong> for serious exam tracking, a <strong>To-Do list</strong> for task management, <strong>Focus Insights</strong> for tracking your study patterns with heatmaps and graphs, and a suite of <strong>utilities</strong> including QR code tools and URL shortening.</p>
<p>The app was designed with a core philosophy: <strong>your data belongs to you</strong>. There is absolutely zero telemetry, no cloud storage, no analytics, and no tracking. Everything runs locally on your machine. The few online features (QR generation, URL shortening) are opt-in and clearly marked.</p>
<p>Created by <a href="About-Deep.html" style="color:#ff6b35;text-decoration:none;font-weight:600;">Deep Dey</a>, a class 11 student and JEE aspirant, Transparent Clock was born from a real need — having a visible clock during study sessions without constantly checking the phone. It grew into a full productivity suite that helps thousands of students stay focused.</p>
</div>
</div>
</section>
<section class="about-section">
<div class="container">
<div class="section-header">
<span class="section-badge">Features</span>
<h2>Everything You Need to Stay Focused</h2>
<p>A comprehensive suite of tools designed for student productivity.</p>
</div>
<div class="feature-showcase">
<div class="feature-card">
<span class="feature-icon">⏰</span>
<h3>Clock Overlay</h3>
<p>Always-on-top transparent clock that sits on your desktop. Adjustable opacity, size, position, and format (12/24h). Never lose track of time again.</p>
<span class="feature-tag">Core Feature</span>
</div>
<div class="feature-card">
<span class="feature-icon">🍅</span>
<h3>Pomodoro Timer</h3>
<p>Built-in Pomodoro technique with customizable work/break durations. Toast notifications, session counting, and automatic long breaks after 4 cycles.</p>
<span class="feature-tag">Focus Tool</span>
</div>
<div class="feature-card">
<span class="feature-icon">⚔️</span>
<h3 style="color: #e74c3c;">Prep-Meter (War Mode)</h3>
<p>Tactical calendar, Commander's Oath, and target exam countdowns designed specifically for elite discipline and serious JEE/NEET tracking.</p>
<span class="feature-tag" style="background: rgba(231,76,60,0.1); color: #e74c3c;">Accountability</span>
</div>
<div class="feature-card">
<span class="feature-icon">✅</span>
<h3>To-Do List</h3>
<p>Simple, clean task management. Add, edit, complete, and organize tasks. Everything saved locally — persists between sessions.</p>
<span class="feature-tag">Productivity</span>
</div>
<div class="feature-card">
<span class="feature-icon">📊</span>
<h3>Focus Insights</h3>
<p>Visualize your productivity with bar graphs, line charts, and heatmaps. Track daily, weekly, and monthly patterns. Filter by date range.</p>
<span class="feature-tag">Analytics</span>
</div>
<div class="feature-card">
<span class="feature-icon">📋</span>
<h3>Dashboard</h3>
<p>Central hub connecting all features. Quick access to Pomodoro, tasks, insights, and settings from one calm, organized interface.</p>
<span class="feature-tag">Interface</span>
</div>
<div class="feature-card">
<span class="feature-icon">🔧</span>
<h3>Utilities Suite</h3>
<p>QR Code generator and scanner, QuickLink URL shortener, and more tools accessible from the utilities tab.</p>
<span class="feature-tag">Online-Assisted</span>
</div>
<div class="feature-card">
<span class="feature-icon">👤</span>
<h3>User Profile</h3>
<p>Personalize your experience with a local profile. Track your total focus hours, completed tasks, and productivity streaks.</p>
<span class="feature-tag">Personal</span>
</div>
<div class="feature-card">
<span class="feature-icon">⚙️</span>
<h3>Settings</h3>
<p>Full control over clock appearance, Pomodoro timing, notification preferences, startup behavior, and data management.</p>
<span class="feature-tag">Customization</span>
</div>
<div class="feature-card">
<span class="feature-icon">🔒</span>
<h3>Privacy First</h3>
<p>Zero data collection. No telemetry. No cloud. No tracking cookies. Your study habits stay on your machine, always.</p>
<span class="feature-tag">Security</span>
</div>
</div>
</div>
</section>
<section class="about-section">
<div class="container">
<div class="section-header">
<span class="section-badge">Technical</span>
<h2>Under the Hood</h2>
<p>Built with modern .NET technology for performance and reliability.</p>
</div>
<div class="arch-grid">
<div class="arch-diagram">
<div class="layer">
<div class="layer-label">UI Layer</div>
WinForms • Custom Controls • Overlays
</div>
<div style="text-align:center;color:#ff6b35;font-size:18px;">↕</div>
<div class="layer">
<div class="layer-label">Business Logic</div>
Pomodoro Engine • Focus Tracker • Prep-Meter
</div>
<div style="text-align:center;color:#ff6b35;font-size:18px;">↕</div>
<div class="layer">
<div class="layer-label">Data Layer</div>
Local JSON Storage • Settings • History
</div>
<div style="text-align:center;color:#ff6b35;font-size:18px;">↕</div>
<div class="layer">
<div class="layer-label">Platform</div>
.NET 8 • Windows 10/11 • x64
</div>
</div>
<div class="arch-info">
<h3>Technical Specifications</h3>
<ul class="arch-list">
<li><strong>Language:</strong> C# (.NET 8)</li>
<li><strong>Framework:</strong> Windows Forms (WinForms)</li>
<li><strong>Runtime:</strong> .NET 8 Desktop Runtime (x64)</li>
<li><strong>OS:</strong> Windows 10 / Windows 11</li>
<li><strong>Storage:</strong> Local JSON files (no database)</li>
<li><strong>Network:</strong> Offline-first; online only for QR & QuickLink</li>
<li><strong>License:</strong> Custom Source-Available (view-only, no reuse)</li>
<li><strong>Installer:</strong> Inno Setup (.exe)</li>
<li><strong>Size:</strong> Under 15 MB installed</li>
<li><strong>Repository:</strong> github.com/deepdeyiitgn/Clock-Overlays</li>
</ul>
</div>
</div>
</div>
</section>
<section class="about-section">
<div class="container">
<div class="section-header">
<span class="section-badge">Privacy</span>
<h2>Your Data. Your Device. Period.</h2>
<p>We believe productivity tools shouldn't spy on you.</p>
</div>
<div class="privacy-grid">
<div class="privacy-card">
<div class="privacy-icon">🚫</div>
<h4>No Telemetry</h4>
<p>Zero analytics, crash reports, or usage tracking sent anywhere.</p>
</div>
<div class="privacy-card">
<div class="privacy-icon">💾</div>
<h4>Local Storage Only</h4>
<p>All data saved as JSON files on your machine. No cloud sync.</p>
</div>
<div class="privacy-card">
<div class="privacy-icon">🔍</div>
<h4>Source-Available</h4>
<p>Full source code on GitHub. Verify every claim yourself.</p>
</div>
<div class="privacy-card">
<div class="privacy-icon">🌐</div>
<h4>Offline First</h4>
<p>Core features work without internet. Online tools are clearly marked.</p>
</div>
</div>
</div>
</section>
<section class="uptodown-section">
<div class="container">
<div class="uptodown-grid">
<div class="uptodown-info">
<span class="section-badge" style="background:#00d4aa;">Available on Uptodown</span>
<h2>Live on <span>Uptodown</span> Store</h2>
<p>Transparent Clock is officially listed on <strong>Uptodown</strong>, one of the world's largest independent software distribution platforms with over 130 million monthly users. Uptodown is headquartered in Málaga, Spain and has been trusted since 2002.</p>
<p>Being on Uptodown means our app has been reviewed by their content team, scanned for security, and made available to a global audience. Users get a verified, safe download with every version update automatically published.</p>
<div class="why-grid" style="margin-top:24px;">
<div class="why-card">
<h4>🔒 Security Verified</h4>
<p>Every version is scanned and verified by Uptodown's security systems before listing.</p>
</div>
<div class="why-card">
<h4>🌍 Global Distribution</h4>
<p>Available to 130M+ monthly users across 200+ countries worldwide.</p>
</div>
<div class="why-card">
<h4>⭐ 5-Star Rating</h4>
<p>Rated 5 out of 5 stars by users on the Uptodown platform.</p>
</div>
<div class="why-card">
<h4>📝 Expert Reviewed</h4>
<p>Reviewed by Uptodown Content Team as a "lightweight, privacy-first productivity app."</p>
</div>
<div class="why-card">
<h4>🔄 Auto-Updated</h4>
<p>New releases are automatically published to Uptodown for instant access.</p>
</div>
<div class="why-card">
<h4>📦 Older Versions</h4>
<p>Access previous versions anytime through Uptodown's version archive.</p>
</div>
</div>
<div class="uptodown-stats">
<div class="ut-stat">
<div class="num">5 ⭐</div>
<div class="label">User Rating</div>
</div>
<div class="ut-stat">
<div class="num">v04.04.2026</div>
<div class="label">Latest Version</div>
</div>
<div class="ut-stat">
<div class="num">Free</div>
<div class="label">Price</div>
</div>
</div>
</div>
<div class="uptodown-screenshot">
<img src="assets/screenshots/Screenshot of Uptodown Store Live Our App.png" alt="Transparent Clock on Uptodown Store" loading="lazy" />
</div>
</div>
</div>
</section>
<section class="about-section">
<div class="container">
<div class="section-header">
<span class="section-badge">Technology</span>
<h2>Built With</h2>
<p>Modern tools and frameworks powering Transparent Clock.</p>
</div>
<div class="tech-grid">
<div class="tech-card">
<div class="tech-emoji">⚡</div>
<h4>C# / .NET 8</h4>
<p>Core application</p>
</div>
<div class="tech-card">
<div class="tech-emoji">🖼️</div>
<h4>WinForms</h4>
<p>Desktop UI framework</p>
</div>
<div class="tech-card">
<div class="tech-emoji">📊</div>
<h4>Custom Charts</h4>
<p>Focus analytics</p>
</div>
<div class="tech-card">
<div class="tech-emoji">📁</div>
<h4>JSON Storage</h4>
<p>Local data persistence</p>
</div>
<div class="tech-card">
<div class="tech-emoji">🔧</div>
<h4>Inno Setup</h4>
<p>Windows installer</p>
</div>
<div class="tech-card">
<div class="tech-emoji">🌐</div>
<h4>HTML/CSS/JS</h4>
<p>Website frontend</p>
</div>
<div class="tech-card">
<div class="tech-emoji">🚀</div>
<h4>Vercel</h4>
<p>Website hosting</p>
</div>
<div class="tech-card">
<div class="tech-emoji">🐙</div>
<h4>GitHub</h4>
<p>Source & releases</p>
</div>
</div>
</div>
</section>
<section class="about-section">
<div class="container">
<div class="section-header">
<span class="section-badge">Timeline</span>
<h2>Version History</h2>
<p>From a simple clock to a full productivity suite.</p>
</div>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-date">April 05, 2026</div>
<div class="timeline-title">V05.04.2026 & v04.04.2026 — War Mode & Stable Updates</div>
<div class="timeline-desc">Introduced the experimental 'War Mode' edition featuring the highly-accountable Prep-Meter, Tactical Calendar, and Commander's Oath for elite focus. Released alongside a critical stable hotfix (v04.04.2026) for Focus Insights rendering.</div>
</div>
<div class="timeline-item">
<div class="timeline-date">February 8, 2026</div>
<div class="timeline-title">v08.02.2026 — Stable Release</div>
<div class="timeline-desc">Production-ready release with finalized Pomodoro system, stable QR tools, polished UI, and performance optimizations. Listed on Uptodown Store.</div>
</div>
<div class="timeline-item">
<div class="timeline-date">February 5, 2026</div>
<div class="timeline-title">v05.02.2026 — Beta Release</div>
<div class="timeline-desc">Major feature expansion: Focus Insights dashboard with heatmaps and graphs, Utilities suite with QR generator/scanner, QuickLink URL shortener integration.</div>
</div>
<div class="timeline-item">
<div class="timeline-date">January 29, 2026</div>
<div class="timeline-title">v29.01.2026 — First Stable</div>
<div class="timeline-desc">First stable release with core clock overlay functionality. Simple, lightweight, and functional — the foundation for everything that followed.</div>
</div>
<div class="timeline-item">
<div class="timeline-date">January 2026</div>
<div class="timeline-title">Development Begins</div>
<div class="timeline-desc">Deep Dey starts building Transparent Clock to solve a personal problem: having a visible clock during long JEE study sessions without checking the phone.</div>
</div>
</div>
</div>
</section>
<section class="about-section">
<div class="container">
<div class="section-header">
<span class="section-badge">Community</span>
<h2>Source-Available & Community Driven</h2>
<p>Built in public, with feedback welcome.</p>
</div>
<div class="feature-showcase" style="grid-template-columns: repeat(3, 1fr);">
<div class="feature-card">
<span class="feature-icon">🐙</span>
<h3>GitHub Repository</h3>
<p>Full source code available for review, learning, and security inspection. Star the repo or open issues.</p>
<span class="feature-tag">Source-Available</span>
</div>
<div class="feature-card">
<span class="feature-icon">📋</span>
<h3>Custom License</h3>
<p>Source code is viewable for learning and security review. Copying, redistribution, and derivative works are prohibited. Free to use as an end user.</p>
<span class="feature-tag">Source-Available</span>
</div>
<div class="feature-card">
<span class="feature-icon">💬</span>
<h3>Community Support</h3>
<p>Get help through GitHub Issues, Discussions, or the Contact page. Join a growing community of focused students.</p>
<span class="feature-tag">Support</span>
</div>
</div>
</div>
</section>
<section class="cta-section">
<div class="container">
<h2>Ready to Focus?</h2>
<p>Download Transparent Clock today and transform your study sessions.</p>
<div class="cta-buttons">
<a href="download.html" class="cta-btn cta-btn-primary">Download Now</a>
<a href="features.html" class="cta-btn cta-btn-secondary">Explore Features</a>