-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2036 lines (1876 loc) · 148 KB
/
Copy pathindex.html
File metadata and controls
2036 lines (1876 loc) · 148 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=yes">
<title>A Time Tracker App For Businesses & Freelancers | TimeTrackerX</title>
<link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/kphjfdjkmhnoamhfacepmnlfmmmdedoj">
<link rel="icon" type="image/png" href="./index src img/timetrackerxAsset 3@4x-8.png">
<link href="https://plus.google.com/110645351171441570048" rel="publisher">
<link href="https://plus.google.com/110645351171441570048?rel=author" rel="author">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap"
rel="stylesheet">
<link href="index.css" rel="stylesheet" media="all">
<link href="own.css" rel="stylesheet" media="all">
<link href="index2.css" rel="stylesheet" media="all">
<link href="bootstrap.css" rel="stylesheet" media="all">
<!-- Google Tag Manager -->
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
dataLayer.push({ "account_id": 179289, "user_role": "owner", "user_id": 524590, "account_type": "team", "account_status": "trial-started", "account_app_downloaded": false, "account_create_team": false, "account_team_added": false, "account_project_created": false, "account_time_tracked": false, "account_settings_set": true, "account_payment_added": false });
(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-NBW6JKX');
</script>
<!-- End Google Tag Manager -->
</head>
<body class="index new">
<div class="content-wrapper-public">
<div class="mobile-menu-overlay"></div>
<header class="public-header">
<nav class="navbar navbar-expand-xl main-topbar " aria-label="Navbar">
<div id="nav_bar_whole">
<div class="navbar-brand" id="logo_nav">
<a class="nav-logo-link" href="" title="TimeTrackerX">
<img class="logo" src="./index src img/timetrackerxAsset 3@4x-8.png" style="width: 200px;"
alt="TimeTrackerX time tracker">
</a>
<a href="https://TimeTrackerX.com/login" class="navbar-toggler">
<span class="dt-icon-log-in "></span>
</a>
</div>
<div id="line_nav">
<ul class="navbar-nav ">
<li class="nav-item">
<a class="nav-link " style="color:rgb(43, 43, 43); " href="">Demo</a>
</li>
<li class="nav-item">
<a class="nav-link " style="color: rgb(43, 43, 43);" href=" ">Features</a>
</li>
<li class="nav-item">
<a class="nav-link " style="color:rgb(43, 43, 43);" href=" ">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link " style="color:rgb(43, 43, 43);" href=" ">About us</a>
</li>
<li class="nav-item">
<a class="nav-link " style="color: rgb(43, 43, 43);" href=" ">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link " style="color:rgb(43, 43, 43)" href=" " target="_blank"
rel="noreferrer noopener">Blog</a>
</li>
<div class="nav-actions">
<div class="nav-actions-buttons-container">
<li class="flex-grow-1">
<a class="btn btn-md btn-primary" href="./frontend/login.html">My
TimeTrackerX</a>
</li>
</div>
</div>
</ul>
</div>
</div>
</nav>
</header>
<section id="content">
<div class="homepage">
<section class="intro-50-50-component">
<div class="container-fluid-override container-xl ">
<!-- <div class="row align-items-center flex-column-reverse flex-lg-row"> -->
<div class="col-12 col-lg-6 text-center text-lg-left">
<h1 class="dt-typography-h2 font-weight-bold mb-3 mb-lg-6 ">The ultimate all-in-one
time tracker for your business</h1>
<div class="dt-typography-subtitle h5 mb-0 ">A time tracker with additional workforce
management features that will help you develop a high-performing team that smashes
goals every time.</div>
</div>
<!-- </div> -->
<div class="col-12 row justify-content-center m-auto p-0">
<div
class="logo-component d-flex flex-row align-items-center justify-content-center flex-wrap mt-8 mt-md-9">
<a href=" https://www.sixt.com/ " class="logo pr-3 pr-sm-6 pr-lg-9" target="_blank"
rel="noreferrer noopener">
<img src="./index src img/customer-sixt-logo-white.svg"
class="img-fluid ls-is-cached lazyload" alt="Sixt">
</a>
<a href=" https://www.mapon.com/ " class="logo pr-3 pr-sm-6 pr-lg-9" target="_blank"
rel="noreferrer noopener">
<img src="./index src img/mappon.svg" class="img-fluid ls-is-cached lazyload"
alt="Mapon">
</a>
<a href=" https://www.montway.com/ " class="logo pr-3 pr-sm-6 pr-lg-9" target="_blank"
rel="noreferrer noopener">
<img src="./index src img/montway.svg" class="img-fluid ls-is-cached lazyload"
alt="Montway">
</a>
<a href=" https://www.onthemap.com/ " class="logo pr-3 pr-sm-6 pr-lg-9" target="_blank"
rel="noreferrer noopener">
<img src="./index src img/on the map.svg" class="img-fluid ls-is-cached lazyload"
alt="On the map">
</a>
<a href=" https://www.printful.com/ " class="logo " target="_blank"
rel="noreferrer noopener">
<img src="./index src img/printful.svg"
class="img-fluid active ls-is-cached lazyload" alt="Printful">
</a>
</div>
</div>
</div>
</section>
<section class="">
<div class="container-fluid-override container-xl ">
<div
class="component-60-40-image-text row flex-md-row-reverse justify-content-center align-items-center">
<div class="col-12 col-lg-5 image-block position-relative mb-8 mb-sm-9 mb-lg-0">
<div class="g2-slider-component d-none" id="capteraSplideSlider">
<div class="background bg-blue rounded"></div>
<div class="d-flex align-items-center flex-column flex-md-row">
<div class="col pb-8 pb-sm-7 px-sm-5 text-center text-md-left">
<div class="splide mb-8" id="capteraSlider">
<div class="splide__track">
<div class="splide__list">
<div
class="splide__slide d-flex flex-column justify-content-center">
<div class="slider-g2-content mb-5">
<a title="TimeTrackerX is a leader in Time Tracking on G2"
rel="nofollow"
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews?utm_source=rewards-badge"><img
style="width: 125px;"
alt="TimeTrackerX is a leader in Time Tracking on G2"
src="https://images.g2crowd.com/uploads/report_medal/image/1003081/medal.svg" /></a>
<script>(function (a, b, c, d) { window.fetch("https://www.g2.com/products/TimeTrackerX-TimeTrackerX/rating_schema.json").then(e => e.json()).then(f => { c = a.createElement(b); c.type = "application/ld+json"; c.text = JSON.stringify(f); d = a.getElementsByTagName(b)[0]; d.parentNode.insertBefore(c, d); }); })(document, "script");</script>
</div>
<div class="text-center">
<p
class="dt-typography-h5 font-weight-bold mb-2 text-white">
Leader Summer 2022</p>
<p class="dt-typography-subtitle-large mb-0 text-white">
Time Tracking</p>
</div>
</div>
<div
class="splide__slide d-flex flex-column justify-content-center">
<div class="slider-g2-content mb-5">
<a title="TimeTrackerX is a leader in Small-Business Employee Monitoring on G2"
rel="nofollow"
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews?utm_source=rewards-badge"><img
style="width: 125px;"
alt="TimeTrackerX is a leader in Small-Business Employee Monitoring on G2"
src="https://images.g2crowd.com/uploads/report_medal/image/1003078/medal.svg" /></a>
<script>(function (a, b, c, d) { window.fetch("https://www.g2.com/products/TimeTrackerX-TimeTrackerX/rating_schema.json").then(e => e.json()).then(f => { c = a.createElement(b); c.type = "application/ld+json"; c.text = JSON.stringify(f); d = a.getElementsByTagName(b)[0]; d.parentNode.insertBefore(c, d); }); })(document, "script");</script>
</div>
<div class="text-center">
<p
class="dt-typography-h5 font-weight-bold mb-2 text-white">
Leader Summer 2022</p>
<p class="dt-typography-subtitle-large mb-0 text-white">
Small-Business Employee Monitoring</p>
</div>
</div>
<div
class="splide__slide d-flex flex-column justify-content-center">
<div class="slider-g2-content mb-5">
<a title="TimeTrackerX is a leader in Small-Business Time Tracking on G2"
rel="nofollow"
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews?utm_source=rewards-badge"><img
style="width: 125px;"
alt="TimeTrackerX is a leader in Small-Business Time Tracking on G2"
src="https://images.g2crowd.com/uploads/report_medal/image/1003078/medal.svg" /></a>
<script>(function (a, b, c, d) { window.fetch("https://www.g2.com/products/TimeTrackerX-TimeTrackerX/rating_schema.json").then(e => e.json()).then(f => { c = a.createElement(b); c.type = "application/ld+json"; c.text = JSON.stringify(f); d = a.getElementsByTagName(b)[0]; d.parentNode.insertBefore(c, d); }); })(document, "script");</script>
</div>
<div class="text-center">
<p
class="dt-typography-h5 font-weight-bold mb-2 text-white">
Leader Summer 2022</p>
<p class="dt-typography-subtitle-large mb-0 text-white">
Small-Business Time Tracking</p>
</div>
</div>
<div
class="splide__slide d-flex flex-column justify-content-center">
<div class="slider-g2-content mb-5">
<a title="TimeTrackerX is a leader in Employee Monitoring on G2"
rel="nofollow"
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews?utm_source=rewards-badge"><img
style="width: 125px;"
alt="TimeTrackerX is a leader in Employee Monitoring on G2"
src="https://images.g2crowd.com/uploads/report_medal/image/1003081/medal.svg" /></a>
<script>(function (a, b, c, d) { window.fetch("https://www.g2.com/products/TimeTrackerX-TimeTrackerX/rating_schema.json").then(e => e.json()).then(f => { c = a.createElement(b); c.type = "application/ld+json"; c.text = JSON.stringify(f); d = a.getElementsByTagName(b)[0]; d.parentNode.insertBefore(c, d); }); })(document, "script");</script>
</div>
<div class="text-center">
<p
class="dt-typography-h5 font-weight-bold mb-2 text-white">
Leader Summer 2022</p>
<p class="dt-typography-subtitle-large mb-0 text-white">
Employee Monitoring</p>
</div>
</div>
<div
class="splide__slide d-flex flex-column justify-content-center">
<div class="slider-g2-content mb-5">
<a title="TimeTrackerX is a leader in Latin America Time Tracking on G2"
rel="nofollow"
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews?utm_source=rewards-badge"><img
style="width: 125px;"
alt="TimeTrackerX is a leader in Latin America Time Tracking on G2"
src="https://images.g2crowd.com/uploads/report_medal/image/1003153/medal.svg" /></a>
<script>(function (a, b, c, d) { window.fetch("https://www.g2.com/products/TimeTrackerX-TimeTrackerX/rating_schema.json").then(e => e.json()).then(f => { c = a.createElement(b); c.type = "application/ld+json"; c.text = JSON.stringify(f); d = a.getElementsByTagName(b)[0]; d.parentNode.insertBefore(c, d); }); })(document, "script");</script>
</div>
<div class="text-center">
<p
class="dt-typography-h5 font-weight-bold mb-2 text-white">
Leader Summer 2022</p>
<p class="dt-typography-subtitle-large mb-0 text-white">
Latin America Time Tracking</p>
</div>
</div>
<div
class="splide__slide d-flex flex-column justify-content-center">
<div class="slider-g2-content mb-5">
<a title="TimeTrackerX is a leader in Asia Time Tracking on G2"
rel="nofollow"
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews?utm_source=rewards-badge"><img
style="width: 125px;"
alt="TimeTrackerX is a leader in Asia Time Tracking on G2"
src="https://images.g2crowd.com/uploads/report_medal/image/1003165/medal.svg" /></a>
<script>(function (a, b, c, d) { window.fetch("https://www.g2.com/products/TimeTrackerX-TimeTrackerX/rating_schema.json").then(e => e.json()).then(f => { c = a.createElement(b); c.type = "application/ld+json"; c.text = JSON.stringify(f); d = a.getElementsByTagName(b)[0]; d.parentNode.insertBefore(c, d); }); })(document, "script");</script>
</div>
<div class="text-center">
<p
class="dt-typography-h5 font-weight-bold mb-2 text-white">
Leader Summer 2022</p>
<p class="dt-typography-subtitle-large mb-0 text-white">
Asia Time Tracking</p>
</div>
</div>
<div
class="splide__slide d-flex flex-column justify-content-center">
<div class="slider-g2-content mb-5">
<a title="TimeTrackerX is a leader in India Time Tracking on G2"
rel="nofollow"
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews?utm_source=rewards-badge"><img
style="width: 125px;"
alt="TimeTrackerX is a leader in India Time Tracking on G2"
src="https://images.g2crowd.com/uploads/report_medal/image/1003169/medal.svg" /></a>
<script>(function (a, b, c, d) { window.fetch("https://www.g2.com/products/TimeTrackerX-TimeTrackerX/rating_schema.json").then(e => e.json()).then(f => { c = a.createElement(b); c.type = "application/ld+json"; c.text = JSON.stringify(f); d = a.getElementsByTagName(b)[0]; d.parentNode.insertBefore(c, d); }); })(document, "script");</script>
</div>
<div class="text-center">
<p
class="dt-typography-h5 font-weight-bold mb-2 text-white">
Leader Summer 2022</p>
<p class="dt-typography-subtitle-large mb-0 text-white">
India Time Tracking</p>
</div>
</div>
<div
class="splide__slide d-flex flex-column justify-content-center">
<div class="slider-g2-content mb-5">
<a title="TimeTrackerX is a leader in Asia Pacific Time Tracking on G2"
rel="nofollow"
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews?utm_source=rewards-badge"><img
style="width: 125px;"
alt="TimeTrackerX is a leader in Asia Pacific Time Tracking on G2"
src="https://images.g2crowd.com/uploads/report_medal/image/1003161/medal.svg" /></a>
<script>(function (a, b, c, d) { window.fetch("https://www.g2.com/products/TimeTrackerX-TimeTrackerX/rating_schema.json").then(e => e.json()).then(f => { c = a.createElement(b); c.type = "application/ld+json"; c.text = JSON.stringify(f); d = a.getElementsByTagName(b)[0]; d.parentNode.insertBefore(c, d); }); })(document, "script");</script>
</div>
<div class="text-center">
<p
class="dt-typography-h5 font-weight-bold mb-2 text-white">
Leader Summer 2022</p>
<p class="dt-typography-subtitle-large mb-0 text-white">
Asia Pacific Time Tracking</p>
</div>
</div>
<div
class="splide__slide d-flex flex-column justify-content-center">
<div class="slider-g2-content mb-5">
<a title="TimeTrackerX is a leader in Europe Time Tracking on G2"
rel="nofollow"
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews?utm_source=rewards-badge"><img
style="width: 125px;"
alt="TimeTrackerX is a leader in Europe Time Tracking on G2"
src="https://images.g2crowd.com/uploads/report_medal/image/1003149/medal.svg" /></a>
<script>(function (a, b, c, d) { window.fetch("https://www.g2.com/products/TimeTrackerX-TimeTrackerX/rating_schema.json").then(e => e.json()).then(f => { c = a.createElement(b); c.type = "application/ld+json"; c.text = JSON.stringify(f); d = a.getElementsByTagName(b)[0]; d.parentNode.insertBefore(c, d); }); })(document, "script");</script>
</div>
<div class="text-center">
<p
class="dt-typography-h5 font-weight-bold mb-2 text-white">
Leader Summer 2022</p>
<p class="dt-typography-subtitle-large mb-0 text-white">
Europe Time Tracking</p>
</div>
</div>
<div
class="splide__slide d-flex flex-column justify-content-center">
<div class="slider-g2-content mb-5">
<a title="TimeTrackerX is a leader in Small-Business Asia Pacific Time Tracking on G2"
rel="nofollow"
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews?utm_source=rewards-badge"><img
style="width: 125px;"
alt="TimeTrackerX is a leader in Small-Business Asia Pacific Time Tracking on G2"
src="https://images.g2crowd.com/uploads/report_medal/image/1003234/medal.svg" /></a>
<script>(function (a, b, c, d) { window.fetch("https://www.g2.com/products/TimeTrackerX-TimeTrackerX/rating_schema.json").then(e => e.json()).then(f => { c = a.createElement(b); c.type = "application/ld+json"; c.text = JSON.stringify(f); d = a.getElementsByTagName(b)[0]; d.parentNode.insertBefore(c, d); }); })(document, "script");</script>
</div>
<div class="text-center">
<p
class="dt-typography-h5 font-weight-bold mb-2 text-white">
High Performer Summer 2022</p>
<p class="dt-typography-subtitle-large mb-0 text-white">
Small-Business Asia Pacific Time Tracking</p>
</div>
</div>
<div
class="splide__slide d-flex flex-column justify-content-center">
<div class="slider-g2-content mb-5">
<a title="TimeTrackerX is a leader in Mid-Market Asia Pacific Time Tracking on G2"
rel="nofollow"
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews?utm_source=rewards-badge"><img
style="width: 125px;"
alt="TimeTrackerX is a leader in Mid-Market Asia Pacific Time Tracking on G2"
src="https://images.g2crowd.com/uploads/report_medal/image/1003235/medal.svg" /></a>
<script>(function (a, b, c, d) { window.fetch("https://www.g2.com/products/TimeTrackerX-TimeTrackerX/rating_schema.json").then(e => e.json()).then(f => { c = a.createElement(b); c.type = "application/ld+json"; c.text = JSON.stringify(f); d = a.getElementsByTagName(b)[0]; d.parentNode.insertBefore(c, d); }); })(document, "script");</script>
</div>
<div class="text-center">
<p
class="dt-typography-h5 font-weight-bold mb-2 text-white">
High Performer Summer 2022</p>
<p class="dt-typography-subtitle-large mb-0 text-white">
Mid-Market Asia Pacific Time Tracking</p>
</div>
</div>
<div
class="splide__slide d-flex flex-column justify-content-center">
<div class="slider-g2-content mb-5">
<a title="TimeTrackerX is a leader in Mid-Market Time Tracking on G2"
rel="nofollow"
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews?utm_source=rewards-badge"><img
style="width: 125px;"
alt="TimeTrackerX is a leader in Mid-Market Time Tracking on G2"
src="https://images.g2crowd.com/uploads/report_medal/image/1003079/medal.svg" /></a>
<script>(function (a, b, c, d) { window.fetch("https://www.g2.com/products/TimeTrackerX-TimeTrackerX/rating_schema.json").then(e => e.json()).then(f => { c = a.createElement(b); c.type = "application/ld+json"; c.text = JSON.stringify(f); d = a.getElementsByTagName(b)[0]; d.parentNode.insertBefore(c, d); }); })(document, "script");</script>
</div>
<div class="text-center">
<p
class="dt-typography-h5 font-weight-bold mb-2 text-white">
Leader Summer 2022</p>
<p class="dt-typography-subtitle-large mb-0 text-white">
Mid-Market Time Tracking</p>
</div>
</div>
<div
class="splide__slide d-flex flex-column justify-content-center">
<div class="slider-g2-content mb-5">
<a title="TimeTrackerX is a leader in Time Tracking on G2"
rel="nofollow"
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews?utm_source=rewards-badge"><img
style="width: 125px;"
alt="TimeTrackerX is a leader in Time Tracking on G2"
src="https://images.g2crowd.com/uploads/report_medal/image/1003145/medal.svg" /></a>
<script>(function (a, b, c, d) { window.fetch("https://www.g2.com/products/TimeTrackerX-TimeTrackerX/rating_schema.json").then(e => e.json()).then(f => { c = a.createElement(b); c.type = "application/ld+json"; c.text = JSON.stringify(f); d = a.getElementsByTagName(b)[0]; d.parentNode.insertBefore(c, d); }); })(document, "script");</script>
</div>
<div class="text-center">
<p
class="dt-typography-h5 font-weight-bold mb-2 text-white">
Momentum Leader Summer 2022</p>
<p class="dt-typography-subtitle-large mb-0 text-white">
Time Tracking</p>
</div>
</div>
<div
class="splide__slide d-flex flex-column justify-content-center">
<div class="slider-g2-content mb-5">
<a title="Users love TimeTrackerX on G2" rel="nofollow"
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews?utm_source=rewards-badge"><img
style="width: 125px;"
alt="Users love TimeTrackerX on G2"
src="https://www.g2.com/assets/product-badges/users-love-us-4fca521cb6d80c30d02e3df6bd0013f5395fb3ae22e81b3e3608e258d8feba63.svg" /></a>
<script>(function (a, b, c, d) { window.fetch("https://www.g2.com/products/TimeTrackerX-TimeTrackerX/rating_schema.json").then(e => e.json()).then(f => { c = a.createElement(b); c.type = "application/ld+json"; c.text = JSON.stringify(f); d = a.getElementsByTagName(b)[0]; d.parentNode.insertBefore(c, d); }); })(document, "script");</script>
</div>
<div class="text-center">
<p
class="dt-typography-h5 font-weight-bold mb-2 text-white">
Users Love Us</p>
<p class="dt-typography-subtitle-large mb-0 text-white">
</p>
</div>
</div>
</div>
</div>
</div>
<div class="d-flex flex-column">
<div class="d-flex justify-content-center mb-8 mb-sm-6">
<span
class="d-flex dt-icon__size--24 dt-icon-g2-star text-yellow"></span>
<span
class="d-flex dt-icon__size--24 dt-icon-g2-star text-yellow"></span>
<span
class="d-flex dt-icon__size--24 dt-icon-g2-star text-yellow"></span>
<span
class="d-flex dt-icon__size--24 dt-icon-g2-star text-yellow"></span>
<span class="d-flex dt-icon__size--24 dt-icon-g2-star-half">
<i class="dt-icon-g2-star-half path1 text-white"></i>
<i class="dt-icon-g2-star-half path2 text-yellow"></i>
</span>
</div>
<div class="d-flex justify-content-center align-items-center mb-3">
<span
class="dt-typography-subtitle-large text-white text-center"><span
class="font-weight-bold">4.6</span> out of 5 </br> from <a
href="https://www.g2.com/products/TimeTrackerX-TimeTrackerX/reviews"
rel="nofollow" target="_blank" rel="noreferrer noopener"
class="font-weight-bold dt-link-white">171
reviews</a></span>
</div>
</div>
</div>
</div>
</div>
<img src="./index src img/boost-productivity.webp"
srcset="/static/web/new-homepage/boost-productivity/boost-productivity@2x.webp 2x, /static/web/new-homepage/boost-productivity/boost-productivity@3x.webp 3x"
class="image-block-img img-fluid ls-is-cached lazyload d-none d-sm-block ml-auto col-lg-10 "
alt="Team members having a discussion">
</div>
<div class="col-12 col-lg-7">
<h2 class="dt-typography-h2 font-weight-bold mb-3">Use time tracker software to boost
productivity by 30%</h2>
<p class="dt-typography-subtitle mb-0">There are numerous ways how TimeTrackerX improves
the
day-to-day work for managers and employees alike. Here are just a few reasons why
the TimeTrackerX time tracker is a great choice for your team.</p>
<div class="checklist-with-icon mt-8 mt-lg-9 row tracking-software-list">
<div class="d-flex flex-row position-relative col-12 col-md-6 mb-8 mb-lg-9 ">
<i class="icon dt-icon__size--24 mr-3 text-primary fas fa-rocket"></i>
<div class="d-flex flex-column">
<h5 class="dt-typography-h5 font-weight-bold mb-3">Skyrocket effectiveness
</h5>
<p class="dt-typography-subtitle mb-0">Know who's doing what and how it's
going all the while eliminating distractions.</p>
</div>
</div>
<div class="d-flex flex-row position-relative col-12 col-md-6 mb-8 mb-lg-9 ">
<i class="icon dt-icon__size--24 mr-3 text-primary fas fa-chart-bar"></i>
<div class="d-flex flex-column">
<h5 class="dt-typography-h5 font-weight-bold mb-3">Minimize business losses
</h5>
<p class="dt-typography-subtitle mb-0">Get precise insights into projects to
determine profitability and allocate resources.</p>
</div>
</div>
<div class="d-flex flex-row position-relative col-12 col-md-6 mb-8 mb-lg-9 ">
<i class="icon dt-icon__size--24 mr-3 text-primary fas fa-suitcase"></i>
<div class="d-flex flex-column">
<h5 class="dt-typography-h5 font-weight-bold mb-3">Automate team management
</h5>
<p class="dt-typography-subtitle mb-0">Organize shifts, absences, and
booking-related questions all in one place.</p>
</div>
</div>
<div class="d-flex flex-row position-relative col-12 col-md-6 ">
<i class="icon dt-icon__size--24 mr-3 text-primary fas fa-fire"></i>
<div class="d-flex flex-column">
<h5 class="dt-typography-h5 font-weight-bold mb-3">Avoid burnout</h5>
<p class="dt-typography-subtitle mb-0">Take care of your team and eliminate
overworking with break reminders and private time.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="" style="background: linear-gradient(180deg, #EBECEC 0%, #FFFFFF 100%);">
<div class="container-fluid-override container-xl ">
<div class="">
<div class="mw-content mx-auto mb-8 mb-sm-9">
<h2 class="dt-typography-h2 font-weight-bold dt-typography-h3 mb-3 text-center ">A
universal platform for running anything from small businesses to large enterprises
</h2>
<p class="dt-typography-subtitle text-center mb-8 mb-sm-9 ">From a powerful time
tracker to project management, human resource planning, and running an office.
Everything is fully customizable and can be turned on and off for the whole company
or specific users.</p>
</div>
<div class="component-50-50-text-image row flex-md-row-reverse align-items-center">
<div class="col-12 col-xl-6 d-flex justify-content-center">
<div class="">
<img src="./index src img/universal-platform.webp"
srcset="/static/web/new-homepage/universal-platform/universal-platform@2x.webp 2x, /static/web/new-homepage/universal-platform/universal-platform@3x.webp 3x"
class="img-fluid component-image mb-6 mb-xl-0 ls-is-cached lazyload"
alt="A screenshot of the user interface in the TimeTrackerX time tracker">
</div>
</div>
<div class="col-12 col-xl-6 d-flex flex-column">
<div class=" ">
<div class="checklist-with-icon mb-9 mb-lg-11">
<div class="d-flex flex-row position-relative mb-8 mb-lg-9 ">
<i class="icon dt-icon__size--24 mr-3 text-primary fas fa-clock"></i>
<div class="d-flex flex-column">
<h5 class="dt-typography-h5 font-weight-bold mb-3">No more manual
time trackers</h5>
<p class="dt-typography-subtitle mb-0">Fully automatic start and end
times, no manual entry, and no human error – the <a
href="https://TimeTrackerX.com/features/time-tracking"
class="font-weight-bold dt-link">automatic time tracker</a>
starts up as soon as you open the computer and stops when you
close it.</p>
</div>
</div>
<div class="d-flex flex-row position-relative mb-8 mb-lg-9 ">
<i class="icon dt-icon__size--24 mr-3 text-primary fas fa-book "></i>
<div class="d-flex flex-column">
<h5 class="dt-typography-h5 font-weight-bold mb-3">Oversee work
progress</h5>
<p class="dt-typography-subtitle mb-0">With <a
href="https://TimeTrackerX.com/features/computer-usage-monitoring"
class="font-weight-bold dt-link">URL and document title
tracking</a> it's easy to always be informed about your
team's overall progress and habits during work hours.</p>
</div>
</div>
<div class="d-flex flex-row position-relative mb-8 mb-lg-9 ">
<i class="icon dt-icon__size--24 mr-3 text-primary fas fa-cog"></i>
<div class="d-flex flex-column">
<h5 class="dt-typography-h5 font-weight-bold mb-3">Optimize your
resources</h5>
<p class="dt-typography-subtitle mb-0">Estimate project costs,
assign hourly rates, and control expenses. <a
href="https://TimeTrackerX.com/features/project-time-tracking"
class="font-weight-bold dt-link">Project management</a> is
easy when you have a birdseye view of all ongoing processes.</p>
</div>
</div>
<div class="d-flex flex-row position-relative ">
<i
class="icon dt-icon__size--24 mr-3 text-primary fas fa-building"></i>
<div class="d-flex flex-column">
<h5 class="dt-typography-h5 font-weight-bold mb-3">Run your office
smoothly</h5>
<p class="dt-typography-subtitle mb-0">TimeTrackerX isn't just a
time
tracker. You can assign <a
href="https://TimeTrackerX.com/features/shift-scheduling"
class="font-weight-bold dt-link">shifts</a> and oversee <a
href="https://TimeTrackerX.com/features/absence-calendar"
class="font-weight-bold dt-link">absences</a>, stay informed
about remote workers and run a hybrid office all on one
platform.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="feature-block ">
<div
class="d-flex flex-row align-items-center justify-content-center flex-wrap mb-8 mb-sm-6 mb-lg-8">
<a class="d-flex justify-content-center align-items-center px-3 py-2 mb-3 mb-sm-6 mb-lg-8 mr-3 text-decoration-none rounded border-radius-2 bg-gray-200 feature-block-item "
href="https://TimeTrackerX.com/features/time-tracking">
<i class="feature-block-item-icon dt-icon__size--25 fas fa-clock fa-spin"></i>
<p
class="m-0 text-gray-900 ml-3 dt-typography-subtitle font-weight-medium feature-block-item-title">
Automatic time tracking</p>
</a>
<a class="d-flex justify-content-center align-items-center px-3 py-2 mb-3 mb-sm-6 mb-lg-8 mr-3 text-decoration-none rounded border-radius-2 bg-gray-200 feature-block-item "
href="https://TimeTrackerX.com/features/private-time">
<i class="feature-block-item-icon dt-icon__size--25 fas fa-pencil-alt"></i>
<p
class="m-0 text-gray-900 ml-3 dt-typography-subtitle font-weight-medium feature-block-item-title">
Private time option</p>
</a>
<a class="d-flex justify-content-center align-items-center px-3 py-2 mb-3 mb-sm-6 mb-lg-8 mr-3 text-decoration-none rounded border-radius-2 bg-gray-200 feature-block-item "
href="https://TimeTrackerX.com/features/project-cost-calculation-billing">
<i
class="feature-block-item-icon dt-icon__size--25 fas fa-file-invoice-dollar"></i>
<p
class="m-0 text-gray-900 ml-3 dt-typography-subtitle font-weight-medium feature-block-item-title">
Cost calculation</p>
</a>
<a class="d-flex justify-content-center align-items-center px-3 py-2 mb-3 mb-sm-6 mb-lg-8 mr-3 text-decoration-none rounded border-radius-2 bg-gray-200 feature-block-item "
href="https://TimeTrackerX.com/features/team-contacts">
<i class="feature-block-item-icon dt-icon__size--25 fas fa-users"></i>
<p
class="m-0 text-gray-900 ml-3 dt-typography-subtitle font-weight-medium feature-block-item-title">
Team's contacts</p>
</a>
<a class="d-flex justify-content-center align-items-center px-3 py-2 mb-3 mb-sm-6 mb-lg-8 mr-3 text-decoration-none rounded border-radius-2 bg-gray-200 feature-block-item "
href="https://TimeTrackerX.com/features/absence-calendar">
<i class="feature-block-item-icon dt-icon__size--25 far fa-calendar-alt"></i>
<p
class="m-0 text-gray-900 ml-3 dt-typography-subtitle font-weight-medium feature-block-item-title">
Absence calendar</p>
</a>
<a class="d-flex justify-content-center align-items-center px-3 py-2 mb-3 mb-sm-6 mb-lg-8 mr-3 text-decoration-none rounded border-radius-2 bg-gray-200 feature-block-item "
href="https://TimeTrackerX.com/features/webtimer">
<i class="feature-block-item-icon dt-icon__size--25 fas fa-stopwatch"></i>
<p
class="m-0 text-gray-900 ml-3 dt-typography-subtitle font-weight-medium feature-block-item-title">
Web time tracker</p>
</a>
<a class="d-flex justify-content-center align-items-center px-3 py-2 mb-3 mb-sm-6 mb-lg-8 mr-3 text-decoration-none rounded border-radius-2 bg-gray-200 feature-block-item "
href="https://TimeTrackerX.com/features/shift-scheduling">
<i class="feature-block-item-icon dt-icon__size--25 far fa-calendar-alt"></i>
<p
class="m-0 text-gray-900 ml-3 dt-typography-subtitle font-weight-medium feature-block-item-title">
Shift Scheduling</p>
</a>
<a class="d-flex justify-content-center align-items-center px-3 py-2 mb-3 mb-sm-6 mb-lg-8 mr-3 text-decoration-none rounded border-radius-2 bg-gray-200 feature-block-item "
href="https://TimeTrackerX.com/features/time-tracking-with-screenshots">
<i class="feature-block-item-icon dt-icon__size--25 fas fa-desktop"></i>
<p
class="m-0 text-gray-900 ml-3 dt-typography-subtitle font-weight-medium feature-block-item-title">
Screenshots</p>
</a>
</div>
<div class="d-flex flex-column">
<a class="feature-block-cta btn btn-lg btn-secondary mx-auto mb-6 mb-lg-8"
style="border-color: rgb(167, 167, 167);"
href="https://TimeTrackerX.com/features">See all features</a>
<p
class="feature-block-caution dt-typography-subtitle-regular text-center text-gray-700 mb-0">
All the features can be turned on and off to suit eveyone's needs</p>
</div>
</div>
</div>
</div>
</section>
<section class="bg-gray-100">
<div class="container-fluid-override container-xl " style="padding: 28px 0px 23px 0px;">
<div class="testimonials-component">
<div class="justify-content-center mb-8 mb-sm-9 mb-lg-11">
<div class="text-center">
<h2 class="mw-content mx-auto dt-typography-h3 font-weight-bold">More than 18 000
companies worldwide trust TimeTrackerX with their business</h2>
</div>
</div>
<!--
<div class="testimonials-slider splide" id="testimonialSlider">
<div class="splide__track">
<div class="splide__list testimonial-list">
<div class="card testimonial-slide splide__slide ">
<div class="card-body p-6">
<div class="media mb-6">
<img alt="Zack Thompson"
data-src="/static/web/testimonial-images/thompson-law.png"
class="lazyload rounded-circle mr-6" width="60" height="60">
<div class="media-body">
<strong class="d-flex align-items-center">
<span
class="dt-typography-h5 text-gray font-weight-bolder">Zack
Thompson</span>
<a href="https://www.linkedin.com/in/zack-thompson-103242/"
class="d-flex ml-3" rel="nofollow" target="_blank"
rel="noreferrer noopener">
<img alt="Linked In" class="d-inline-block"
src="/static/web/_common/icons/linkedin.svg"
width="20" height="20">
</a>
</strong>
<div class="d-flex flex-column">
<span
class="dt-typography-subtitle-regular text-gray-900">CEO</span>
<a href="http://www.triallawyers.com/"
class="dt-typography-subtitle-regular dt-link"
rel="nofollow" target="_blank"
rel="noreferrer noopener">Thompson Law</a>
</div>
</div>
</div>
<p class="mb-0 dt-typography-subtitle-regular text-gray-900">TimeTrackerX
has helped us see where our staff can more efficiently tend to our
personal injury cases and the injured clients who need us. Whether
working from home or at the office, it has improved overall
productivity, efficiency, and most importantly has shown our
diligence to be there for our personal injury clients in Dallas-Fort
Worth and beyond when it matters most.</p>
</div>
</div>
<div class="card testimonial-slide splide__slide ">
<div class="card-body p-6">
<div class="media mb-6">
<img alt="Gautam Khorana"
data-src="/static/web/testimonial-images/gautam-khorana.jpg"
class="lazyload rounded-circle mr-6" width="60" height="60">
<div class="media-body">
<strong class="d-flex align-items-center">
<span
class="dt-typography-h5 text-gray font-weight-bolder">Gautam
Khorana</span>
</strong>
<div class="d-flex flex-column">
<span
class="dt-typography-subtitle-regular text-gray-900">COO</span>
<span
class="dt-typography-subtitle-regular text-gray-900 font-weight-bolder">Seahawk
media</span>
</div>
</div>
</div>
<p class="mb-0 dt-typography-subtitle-regular text-gray-900">I deployed
TimeTrackerX across my organisation about 2.5 months ago and it was one
of my best decisions during these weird times. We are a quick
growing company and have moved everyone to work from home mode
indefinitely! It's easy to not only track but also reward/give
praise to one of our hardest working teammates. Highly recommended
to all.</p>
</div>
</div>
<div class="card testimonial-slide splide__slide ">
<div class="card-body p-6">
<div class="media mb-6">
<img alt="Bilal Khalid"
data-src="/static/web/testimonial-images/bilal-khalid.jpg"
class="lazyload rounded-circle mr-6" width="60" height="60">
<div class="media-body">
<strong class="d-flex align-items-center">
<span
class="dt-typography-h5 text-gray font-weight-bolder">Bilal
Khalid</span>
</strong>
<div class="d-flex flex-column">
<span
class="dt-typography-subtitle-regular text-gray-900">Technical
Director</span>
<span
class="dt-typography-subtitle-regular text-gray-900 font-weight-bolder">Renesis
tech</span>
</div>
</div>
</div>
<p class="mb-0 dt-typography-subtitle-regular text-gray-900">TimeTrackerX is
one of the best remote working tools that we came to know, we tried
all sorts of employee management platforms, but with TimeTrackerX we
were able to identify the productive times efficiently which is
great. It has given us an edge over these difficult times to ensure
the work goes on.</p>
</div>
</div>
<div class="card testimonial-slide splide__slide ">
<div class="card-body p-6">
<div class="media mb-6">
<img alt="Abdurrahman Karaahmetoglu"
data-src="/static/web/testimonial-images/abdurrahman.png"
class="lazyload rounded-circle mr-6" width="60" height="60">
<div class="media-body">
<strong class="d-flex align-items-center">
<span
class="dt-typography-h5 text-gray font-weight-bolder">Abdurrahman
Karaahmetoglu</span>
</strong>
<div class="d-flex flex-column">
<span
class="dt-typography-subtitle-regular text-gray-900">General
Manager</span>
<span
class="dt-typography-subtitle-regular text-gray-900 font-weight-bolder">B2
Yazılım A.Ş.</span>
</div>
</div>
</div>
<p class="mb-0 dt-typography-subtitle-regular text-gray-900">There is no
problem about TimeTrackerX, we love it :)</p>
</div>
</div>
<div class="card testimonial-slide splide__slide ">
<div class="card-body p-6">
<div class="media mb-6">
<img alt="Alsam Hasib"
data-src="/static/web/testimonial-images/alsam-hasib.png"
class="lazyload rounded-circle mr-6" width="60" height="60">
<div class="media-body">
<strong class="d-flex align-items-center">
<span
class="dt-typography-h5 text-gray font-weight-bolder">Alsam
Hasib</span>
<a href="https://bd.linkedin.com/in/aslam-hasib-27042b28"
class="d-flex ml-3" rel="nofollow" target="_blank"
rel="noreferrer noopener">
<img alt="Linked In" class="d-inline-block"
src="/static/web/_common/icons/linkedin.svg"
width="20" height="20">
</a>
</strong>
<div class="d-flex flex-column">
<span
class="dt-typography-subtitle-regular text-gray-900">Managing
Director</span>
<a href="https://hasthemes.com/"
class="dt-typography-subtitle-regular dt-link"
rel="nofollow" target="_blank"
rel="noreferrer noopener">HasTech IT</a>
</div>
</div>
</div>
<p class="mb-0 dt-typography-subtitle-regular text-gray-900">If you are
concerned about the productivity of your employees and the
applications they are using daily, then TimeTrackerX is an amazing
solution for you. It is cost-effective compared to the other time
tracking software and has been helping us with boosting
productivity. We definitely recommend this software to companies
with both remote and office employees.</p>
</div>
</div>
<div class="card testimonial-slide splide__slide ">
<div class="card-body p-6">
<div class="media mb-6">
<img alt="Cate Wheatley"
data-src="/static/web/testimonial-images/cate.jpg"
class="lazyload rounded-circle mr-6" width="60" height="60">
<div class="media-body">
<strong class="d-flex align-items-center">
<span
class="dt-typography-h5 text-gray font-weight-bolder">Cate
Wheatley</span>
</strong>
<div class="d-flex flex-column">
<span
class="dt-typography-subtitle-regular text-gray-900">Customer
Relations Manager</span>
<span
class="dt-typography-subtitle-regular text-gray-900 font-weight-bolder">ConnexCS</span>
</div>
</div>
</div>
<p class="mb-0 dt-typography-subtitle-regular text-gray-900">As all of
our staff work remotely, having TimeTrackerX to monitor their activities
has proved to be an invaluable tool in ensuring that people are
doing what they are supposed to. I love the fact that I don't have
to worry about keeping track of my hours as TimeTrackerX does it all for
me. I also enjoy the articles written by the contributors.</p>
</div>
</div>
<div class="card testimonial-slide splide__slide ">
<div class="card-body p-6">
<div class="media mb-6">
<img alt="Pascale Tschaler"
data-src="/static/web/testimonial-images/pascale-tschaler.jpg"
class="lazyload rounded-circle mr-6" width="60" height="60">
<div class="media-body">
<strong class="d-flex align-items-center">
<span
class="dt-typography-h5 text-gray font-weight-bolder">Pascale
Tschaler</span>
</strong>
<div class="d-flex flex-column">
<span
class="dt-typography-subtitle-regular text-gray-900">Founder
& Director</span>
<span
class="dt-typography-subtitle-regular text-gray-900 font-weight-bolder">TOA
Agency</span>
</div>
</div>
</div>
<p class="mb-0 dt-typography-subtitle-regular text-gray-900">TimeTrackerX is
a great solution to increase and control the productivity of our
business. As we are an outsourcing company and work remotely alot,
TimeTrackerX is the perfect solution to keep track.</p>
</div>
</div>
<div class="card testimonial-slide splide__slide ">
<div class="card-body p-6">
<div class="media mb-6">
<img alt="Mario López"
data-src="/static/web/testimonial-images/monteloeder.png"
class="lazyload rounded-circle mr-6" width="60" height="60">
<div class="media-body">
<strong class="d-flex align-items-center">
<span
class="dt-typography-h5 text-gray font-weight-bolder">Mario
López</span>
<a href="https://www.linkedin.com/in/mariolopezurban/"
class="d-flex ml-3" rel="nofollow" target="_blank"
rel="noreferrer noopener">
<img alt="Linked In" class="d-inline-block"
src="/static/web/_common/icons/linkedin.svg"
width="20" height="20">
</a>
</strong>
<div class="d-flex flex-column">
<span
class="dt-typography-subtitle-regular text-gray-900">HR
Manager</span>
<a href="https://www.monteloeder.com/"
class="dt-typography-subtitle-regular dt-link"
rel="nofollow" target="_blank"
rel="noreferrer noopener">Monteloeder</a>
</div>
</div>
</div>
<p class="mb-0 dt-typography-subtitle-regular text-gray-900">TimeTrackerX is
a great tool for organizing time, analyzing deviations, and
demonstrating effective work, whether working remotely or not. These
types of tools allow the work-life balance that everyone desires.
</p>
</div>
</div>
<div class="card testimonial-slide splide__slide ">
<div class="card-body p-6">
<div class="media mb-6">
<img alt="Julia Gifford"
data-src="/static/web/testimonial-images/julia.png"
class="lazyload rounded-circle mr-6" width="60" height="60">
<div class="media-body">
<strong class="d-flex align-items-center">
<span
class="dt-typography-h5 text-gray font-weight-bolder">Julia
Gifford</span>
</strong>
<div class="d-flex flex-column">
<span
class="dt-typography-subtitle-regular text-gray-900">CEO</span>
<a href="https://truesix.co/"
class="dt-typography-subtitle-regular dt-link"
rel="nofollow" target="_blank"
rel="noreferrer noopener">Truesix Co</a>
</div>
</div>
</div>
<p class="mb-0 dt-typography-subtitle-regular text-gray-900">If you're