-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
466 lines (447 loc) · 23.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
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
<!--
author: Boostraptheme
author URL: https://boostraptheme.com
License: Creative Commons Attribution 4.0 Unported
License URL: https://creativecommons.org/licenses/by/4.0/
-->
<!DOCTYPE html>
<html class="no-js" prefix="og: http://ogp.me/ns#" lang="en-IN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Point Taken App - Revolutionize support in self organized teams</title>
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="img/pt_icon_96.png" rel="point-taken-icon" sizes="96x96">
<link href="img/pt_icon_96.png" rel="icon" sizes="96x96" type="image/png">
<link href="img/pt_icon_32.png" rel="icon" sizes="32x32" type="image/png">
<meta content="img/pt_icon_96.png" name="msapplication-TileImage">
<meta property="og:url" content="https://pointtaken.app"/>
<meta property="og:title" content="Point Taken App - Support based on trust & control"/>
<meta property="og:locale" content="en_EN"/>
<link rel='stylesheet' href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<!-- <link rel="stylesheet" type="text/css" href="device-mockups/device-mockups.min.css"> -->
<link rel="stylesheet" type="text/css" href="devices/devices.min.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/animate.min.css">
<link rel="stylesheet" href="css/app.css">
<script src="https://kit.fontawesome.com/94befde146.js" crossorigin="anonymous"></script>
<script src="js/jquery.min.js"></script>
<script> $(window).on('load', function () {
$(".loader").fadeOut(2000);
}); </script>
</head>
<body>
<div class="loader"></div>
<!-- NAVIGATION
==============-->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="index.html#home"><img src="img/logo_pt.png" alt=""
class="img-fluid"></a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse"
data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false"
aria-label="Toggle navigation">
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#app-about">Our approach</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#our-process">Features</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#faq">App</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#download">Download Now </a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#contact">Contact us</a>
</li>
</ul>
</div>
</div>
</nav>
<!--APP HEADER
================-->
<section id="home" class="masthead">
<div class="container h-100">
<div class="row h-100">
<div class="col-lg-7 my-auto">
<div class="header-content mx-auto animated wow zoomIn" data-wow-duration="0.3s" data-wow-delay=".1s">
<h1 class="mx-auto">Re-Think tracking your IT support efforts. </h1>
<h1>Accomplish fairness & enable your team
to evolve - sustainable, effective & intrinsic</h1>
<a href="#download">
<button class="btn btn-white mt-4 py-2 px-3 ">Download Now <i
class="fas fa-arrow-alt-circle-down"></i></button>
</a>
</div>
</div>
<div class="col-lg-5 my-auto">
<div class="device device-google-pixel">
<div class="device-frame">
<img class="device-content img-fluid" src="img/app/ReportSample.png">
</div>
<div class="device-stripe"></div>
<div class="device-header"></div>
<div class="device-sensors"></div>
<div class="device-btns"></div>
<div class="device-power"></div>
</div>
</div>
</div>
</div>
</section>
<div class="bg-banner-img">
<!-- <img src="img/bg-curve.png" alt=""> -->
</div>
<!-- APP ABOUT
================-->
<section id="app-about" class="app-about">
<div class="container">
<div class="row first">
<div class="col-md-4 wow flipInX" data-wow-delay="0.3s">
<img src="img/app/OnDutySample.png" alt="" class="third img-fluid">
<img src="img/app/WorklogSample.png" alt="" class="fourth img-fluid">
</div>
<div class="col-md-6 m-auto wow fadeInRight" data-wow-delay="0.6s">
<div class="app-about-cont">
<i class="fa fa-rocket"></i>
<h3>Supply, acknowledge or decline worklogs via Smartphone. Anywhere. Anytime.</h3>
<p>A lot of modern & self-organized teams face a common challenge: Who provides support to
highly sophisticated services within complex domains? Who is "On-Call" after office hours being
able to provide deep domain knowledge in case of an emergency?</p>
<p>Point Taken allows to cope with this challenge in a sustainable way: Members of the domain team
(developers, Product Owners, etc.) can participate on a voluntary basis to provide this kind of
support - during releases, hypercare or as a general service towards the stakeholders.</p>
<p>By supplying worklogs this kind of "extra time on the job" is made transparent and can be
rewarded in a fair way by the use of a flexible point system. Merits coming from the earned
points are routed to existing payout channels like HR for vacation or payroll for additional
payments.</p>
</div>
</div>
</div>
<div class="row second">
<div class="col-md-6 m-auto wow fadeInRight" data-wow-delay="0.3s">
<div class="app-about-cont right">
<i class="fa fa-hat-wizard"></i>
<h3>Key benefits vs. "Eat your own dogfood"</h3>
<p>We believe that the accountability for the quality of service to a product has to be provided
where it belongs: In the domain, that implements & maintains the service. </p>
<p>Point Taken helps to incentivise developers and product owners to provide their domain knowledge
or provide On-Call duty outside the usual working hours.</p>
<p>The time to response is being shortened, extra work gets extra benefits - it is being noticed
& rewarded. The observable effect is usually: Dev-Teams are self-motivated to increase the
quality of their services, because being alarmed during leisure time is something most people
want to avoid.</p>
<p>Most importantly for team leads or management: Once processes are clarified with HR merits can be
channeled through the usual methods of compensation like additional payments via payroll or
issuing extra vacation also obeying local laws and tax regulations.</p>
</div>
</div>
<div class="col-md-4 wow flipInX" data-wow-delay="0.6s">
<img src="img/app/ApproveDeclineLogs.png" alt="" class="third img-fluid">
<img src="img/app/ReportSample.png" alt="" class="fourth img-fluid">
</div>
</div>
</div>
</section>
<!-- OUR PROCESS
================-->
<section id="our-process" class="our-process">
<div class="container">
<div class="row mb-5 wow fadeInUp" data-wow-delay="0.3s">
<div class="col-md-12 text-center">
<div class="heading">
<h1>Key Features</h1>
<div class="bord-bot"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 wow fadeInLeft" data-wow-delay="0.3s">
<div class="col-md-12 col-sm-12">
<div class="service-desc-cont">
<i class="fa fa-android"></i>
<h5>Easy supply of Work- and OnDuty-Logs</h5>
<p>Proteges use the Point Taken App to supply testiments of their work. Points are being
calculated transparently and automatically based on a provided point schema per single log
entry.</p>
</div>
</div>
<div class="col-md-12 col-sm-12">
<div class="service-desc-cont">
<i class="fa fa-tasks"></i>
<h5>Acknowledge or Decline Logs</h5>
<p>While it is the job of Proteges to provide after-hours work and track the invested times it
is the responsibility of a Caretaker to evaluate, approve or decline the provided logs.</p>
</div>
</div>
<div class="col-md-12 col-sm-12">
<div class="service-desc-cont mb-5">
<i class="fa fa-bar-chart-o"></i>
<h5>Create reports on demand</h5>
<p>Caretakers can create reports that summarize the work of the proteges for a month. This
report has to be forwarded to HR and payroll to issue compensations in time.</p>
</div>
</div>
</div>
<div class="col-md-4 device-container">
<div class="device device-google-pixel device-black">
<div class="device-frame">
<img class="device-content img-fluid" src="img/app/SignupWithCaretaker.png">
</div>
</div>
</div>
<div class="col-md-4 wow fadeInRight" data-wow-delay="0.9s">
<div class="col-md-12 col-sm-12">
<div class="service-desc-cont">
<i class="fa fa-bell"></i>
<h5>Mail & App Notifications</h5>
<p>As a caretaker you can get a notifcation via Mail and on your device if there are pending
logs or proteges. This allows you to react quicker and ask if there are any inconsistencies
or need for clarification.</p>
</div>
</div>
<div class="col-md-12 col-sm-12">
<div class="service-desc-cont">
<i class="fa fa-check-double"></i>
<h5>Source data & transparency</h5>
<p>Along with an acknowledged report you will get the raw data in form of a CSV that was used to
create the calculations in the report via Mail. Proteges get a user centric report on the
earned points and merits upon an report, that was acknowledged by the caretaker.</p>
</div>
</div>
<div class="col-md-12 col-sm-12">
<div class="service-desc-cont">
<i class="fa fa-handshake"></i>
<h5>Coupling made easy</h5>
<p>Proteges use a caretaker specific invite code to view and accept a caretaker and the point
schema. After the caretaker Opt-In to a new protege the submission of logs can start.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ
================-->
<section id="faq" class="faq py-5">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="device device-google-pixel-2-xl">
<div class="device-frame">
<img src="img/doubel-mobile.png" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="col-md-6 col-sm-12 wow mt-5 mx-auto" data-wow-delay="0.6s">
<div class="faq-cont">
<div id="accordion">
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link" data-toggle="collapse" data-target="#collapseOne"
aria-expanded="true" aria-controls="collapseOne">
<i class="fa fa-arrow-right"></i>
Why Use Point Taken?
</button>
</h5>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne"
data-parent="#accordion">
<div class="card-body">
<p>As a protege Point Taken offers you to easily keep track of your after hours work
and easily inform about stuff you worked on - completely decoupled from
On-Premise systems, etc.. </p>
<p>As caretaker you have the oportunity to review the supplied logs at your own
pace. Points are calculated automatically and you can trigger a report that you
can sign and handover to HR.</p>
<p>As an agile, domain oriented company you can easily include the people who work
on the code and the product everyday to the intense process of support - maybe
even without having a dedicated 1st Level at all and living Site Reliability
Engineering.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse"
data-target="#collapseThree" aria-expanded="false"
aria-controls="collapseThree">
<i class="fa fa-arrow-right"></i>
Why is there no first level in Point Taken?
</button>
</h5>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree"
data-parent="#accordion">
<div class="card-body">
<p>Point Taken focusses on people not primarily working in first level support but in various roles within development teams (developers, product owners, all sorts of engineers, etc.). It should easily bring merits to work that is done "on top" of the usual job, make this work transparent and decouple the process for rewards earned during this time. </p>
<p>First level support on the other hand is a totally different game with its own ecosystem of tools all around it. Also it usually has dedicated people to it that are professionals when it comes to alarming, incident management and uptime monitoring during business hours and after - which have a much more sophisticated set of tools running to ease their day to day work.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse"
data-target="#collapseTwo" aria-expanded="false"
aria-controls="collapseTwo">
<i class="fa fa-arrow-right"></i>
I have a great idea for a new feature - What can I do?
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo"
data-parent="#accordion">
<div class="card-body">
That is just great and actually the overall idea of Point Taken is to build a
superior product together with the users who use it. This of course only works if
you tell us your needs - we love to get in touch with you. Please use the provided
Twitter- or Youtube-Channels presented in the end of this page or use the feedback
form within the App!
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- GALLERY
================-->
<!-- section id="gallery" class="gallery">
<div class="container">
<div class="row mb-5 wow fadeInUp" data-wow-delay="0.3s">
<div class="col-md-12 text-center">
<div class="heading">
<h1>Our Gallery</h1>
<div class="bord-bot"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div id="gallery-slider" class="owl-carousel owl-theme">
<div class="gallery-img">
<img src="img/app/first.jpg" alt="" class="img-fluid">
</div>
<div class="gallery-img">
<img src="img/app/second.jpg" alt="" class="img-fluid">
</div>
<div class="gallery-img">
<img src="img/app/third.jpg" alt="" class="img-fluid">
</div>
<div class="gallery-img">
<img src="img/app/four.jpg" alt="" class="img-fluid">
</div>
<div class="gallery-img">
<img src="img/app/five.jpg" alt="" class="img-fluid">
</div>
<div class="gallery-img">
<img src="img/app/six.jpg" alt="" class="img-fluid">
</div>
<div class="gallery-img">
<img src="img/app/seventh.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- DOWNLOAD APP
================-->
<section id="download" class="download-app pb-0">
<div class="container">
<div class="row">
<div class="col-md-12 text-center mb-4">
<h1>Download our latest App</h1>
</div>
<div class="col-md-12 android text-center">
<a href="https://play.google.com/store/apps/details?id=de.dauernet.pointtaken">
<img src="img/app/android.png" alt="" class="img-fluid">
</a>
</div>
<div class="col-md-12 text-center mb-4">
<p>(Currently in closed Alpha - contact us if you are interested!)</p>
</div>
<!-- <div class="col-md-12 text-center mt-5 mx-auto">
<div class="device-container">
<div class="device-mockup iphone6_plus portrait white wow bounceInUp" data-wow-delay=".5s">
<div class="device">
<div class="screen">
<img src="img/app/six.jpg" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
</div> -->
</div>
</div>
</section>
<!-- CONTACT
================-->
<section id="contact" class="contact">
<div class="container">
<div class="row mb-5 wow fadeInUp" data-wow-delay="0.3s">
<div class="col-md-12 text-center">
<div class="heading">
<h1>Connect On Social</h1>
<div class="bord-bot"></div>
<p class="wow fadeInUp" data-wow-delay="0.4s">Connect with Point Taken App on social networking
sites</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 text-center">
<div class="contact-cont wow fadeInUp" data-wow-delay="0.6s">
<a href="https://twitter.com/pointtakenapp" target="_blank">
<img src="img/icon/icon-2.png" alt="" class="img-fluid">
<h5>Twitter</h5>
</a>
</div>
</div>
<div class="col-md-6 col-sm-6 text-center">
<div class="contact-cont wow fadeInUp" data-wow-delay="1.2s">
<a href="https://www.youtube.com/channel/UCtohJH6ayybkr5FhDWJsr0Q" target="_blank">
<img src="img/icon/icon-3.png" alt="" class="img-fluid">
<h5>Youtube</h5>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- FOOTER
==============-->
<footer id="footer" class="footer">
<div class="container-fluid">
<div class="row top-footer">
<div class="col-md-12 text-center">
<p>Imprint (german language): <a href="https://pointtaken.app/impressum.html">Impressum</a></p>
<p>Copyrights © Design by <a href="https://boostraptheme.com/">Boostraptheme</a></p>
<p>© 2021 by <a href="http://dauernet.de">Dauernet.de</a></p>
</div>
</div>
</div>
</footer>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.easing.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>