-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
863 lines (783 loc) · 47 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
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
<!DOCTYPE html>
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head>
<title>RideSafe - free biker fall algorithm</title>
<!-- META DATA -->
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="RideSafe is an open source project which detects bikers' falls. This is possible thanks to intelligent algorithms and data collection.">
<meta name="keywords" content="moto, motorbike, bikers, fall, detection, algorithm, machine learning">
<meta name="author" content="Nousmotards">
<!-- CSS Global Compulsory -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style-red.css">
<!-- CSS Implementing Plugins -->
<link rel="stylesheet" href="css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="css/ionicons.min.css" type="text/css">
<link rel="stylesheet" href="css/animate.min.css" type="text/css">
<link rel="stylesheet" href="css/flexslider.css" type="text/css">
<link rel="stylesheet" href="css/swiper.min.css" type="text/css">
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css">
<link rel="stylesheet" href="css/owl.carousel.css" type="text/css">
<link rel="stylesheet" href="css/select2.min.css">
<link rel="stylesheet" href="css/vegas.min.css">
<link rel="stylesheet" href="css/custom.css">
<!-- Revolution Style Sheets -->
<link rel="stylesheet" href="include/rs-plugin/css/settings.css" type="text/css">
<link rel="stylesheet" href="include/rs-plugin/css/layers.css" type="text/css">
<link rel="stylesheet" href="include/rs-plugin/css/navigation.css" type="text/css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<!--[if lt IE 11]>
<link rel="stylesheet" type="text/css" href="css/ie.css">
<![endif]-->
<!-- FONTS -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic%7CRoboto:400,300,100,500,700,900' rel='stylesheet' type='text/css'>
<!-- JS -->
<script type="text/javascript" src="js/modernizr.js"></script>
<!-- FAVICONS -->
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" href="images/ridesafe_touch_icon.jpg">
<link rel="apple-touch-icon" sizes="72x72" href="images/ridesafe_72.jpg">
<link rel="apple-touch-icon" sizes="114x114" href="images/ridesafe_114.jpg">
</head>
<body>
<div id="preloader">
<div id="loading-animation"></div>
</div>
<div class="main-container">
<div id="top"></div>
<header class="main-header style-1 transparent">
<div class="header-wrapper">
<nav class="header-nav light">
<div class="nav-wrapper">
<div class="container-fluid">
<div class="nav-block left block-widgets">
<button type="button" class="nav-toggle">
<i class="ion-navicon"></i>
</button>
<div class="header-logo">
<a href="index.html">
<img src="images/ridesafe_text.png" class="logo-light" alt="RideSafe logo" style="padding:10px">
</a>
</div>
</div>
<div class="nav-block right block-widgets">
<div class="header-functions">
<div class="header-widgets">
<!-- Top Search -->
<div class="header-widget top-search" data-trigger="click">
<a href="#" id="top-search-trigger" class="trigger-widget"><i class="ion-ios-search-strong"></i></a>
<div class="widget-content">
<form class="nomargin">
<input class="form-control nobottommargin" type="text" placeholder="Type Here">
</form>
</div>
</div>
</div>
</div>
</div>
<div class="nav-block right block-menu">
<ul class="menu">
<li class="bt-dropdown">
<a href="#" class="dropdown-toggle">Home</a>
</li>
<li class="bt-dropdown">
<a href="#project" class="dropdown-toggle">Project</a>
</li>
<li class="bt-dropdown mega-menu">
<a href="#plan" class="dropdown-toggle">Action plan</a>
</li>
<li class="bt-dropdown mega-menu">
<a href="#team" class="dropdown-toggle">Team</a>
</li>
<li class="bt-dropdown">
<a href="#partnership" class="dropdown-toggle">Partnerships</a>
</li>
<li class="bt-dropdown mega-menu">
<a href="#contact" class="dropdown-toggle">Contact</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</div>
</header>
<!-- .main-header end -->
<!-- Page Header -->
<section class="intro-section nopadding">
<!-- REVOLUTION SLIDER -->
<div class="rev_slider_wrapper fullscreen-container" data-alias="notgeneric1" style="background-color:transparent;padding:0px;">
<!-- START REVOLUTION SLIDER 5.0.7 fullscreen mode -->
<div class="rev_slider fullscreenbanner" style="display:none;" data-version="5.2.4">
<ul>
<!-- SLIDE -->
<li data-index="rs-1" data-transition="zoomout" data-slotamount="default" data-easein="Power4.easeInOut" data-easeout="Power4.easeInOut" data-masterspeed="2000" data-thumb="" data-rotate="0" data-fstransition="fade" data-fsmasterspeed="1500" data-fsslotamount="7" data-saveperformance="off" data-title="Intro" data-description="">
<!-- MAIN IMAGE -->
<img src="images/bg_ridesafe.jpg" alt="" class="rev-slidebg" data-bgparallax="10" data-bgposition="center center" data-duration="30000" data-ease="Linear.easeNone" data-kenburns="on" data-no-retina="" data-offsetend="0 0" data-offsetstart="0 0" data-rotateend="0" data-rotatestart="0" data-scaleend="100" data-scalestart="140">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption tp-shape tp-shapewrapper rs-parallaxlevel-0 background-dark-5"
id="slide-1-layer-1"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['0','0','0','0']"
data-width="full"
data-transform_in="opacity:0;s:2<!---->000;e:Power3.easeInOut;"
data-transform_out="opacity:0;s:0;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-start="0"
data-basealign="slide"
data-responsive_offset="on"
data-responsive="off"
style="z-index: 5;">
</div>
<!--data-height="full"<!––>-->
<!--data-whitespace="nowrap"-->
<!--data-transform_idle="o:0.4;"-->
<!-- LAYER NR. 3 -->
<div class="tp-caption NotGeneric-Title tp-resizeme rs-parallaxlevel-0 font-light"
id="slide-1-layer-3"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['-54','0','0','-42']"
data-fontsize="['72','56','46','36']"
data-lineheight="['80','64','54','44']"
data-width="['none','none','720','400']"
data-height="none"
data-whitespace="['nowrap','nowrap','nowrap','normal']"
data-transform_idle="o:1;"
data-transform_in="x:[105%];z:0;rX:45deg;rY:0deg;rZ:90deg;sX:1;sY:1;skX:0;skY:0;s:2000;e:Power4.easeInOut;"
data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_in="x:0px;y:0px;s:inherit;e:inherit;"
data-mask_out="x:inherit;y:inherit;s:inherit;e:inherit;"
data-start="1000"
data-splitin="chars"
data-splitout="none"
data-responsive_offset="on"
data-elementdelay="0.05"
style="z-index: 5; white-space: nowrap;">RideSafe : Biker fall detection technology
</div>
<!-- LAYER NR. 4 -->
<div class="tp-caption tp-resizeme rs-parallaxlevel-0 revo-slider-desc-text text-white font-light"
id="slide-1-layer-4"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['26','77','77','77']"
data-fontsize="['21','21','18','18']"
data-lineheight="['30','30','28','28']"
data-width="['none','none','720','400']"
data-height="none"
data-whitespace="normal"
data-transform_idle="o:1;"
data-transform_in="y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;s:2000;e:Power4.easeInOut;"
data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_in="x:0px;y:[100%];s:inherit;e:inherit;"
data-mask_out="x:inherit;y:inherit;s:inherit;e:inherit;"
data-start="1500"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 6; white-space: normal; width: 750px; max-width: 750px;">RideSafe is an open source project which detects bikers' falls. This is possible thanks to intelligent algorithms and data collection.
</div>
<!-- LAYER NR. 5 -->
<a class="tp-caption button button-border button-rounded button-white rs-parallaxlevel-0"
href="https://github.com/ridesafe" target="_blank"
id="slide-1-layer-5"
data-x="['center','center','center','center']" data-hoffset="['0','-115','-130','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['100','148','148','168']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:300;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 1.00);bc:rgba(255, 255, 255, 1.00);cursor:pointer;"
data-transform_in="y:50px;opacity:0;s:1500;e:Power4.easeInOut;"
data-transform_out="y:[175%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_out="x:inherit;y:inherit;"
data-start="2000"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
data-responsive="off"
style="z-index: 8; white-space: nowrap;outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;">View on Github
</a>
</li>
<!-- SLIDE -->
<li data-index="rs-2" data-transition="zoomin" data-slotamount="7" data-easein="Power4.easeInOut" data-easeout="Power4.easeInOut" data-masterspeed="2000" data-thumb="file:///M:/Michał/Bluminethemes/Themeforest/Purchased/codecanyon-2580848-slider-revolution-responsive-jquery-plugin-v5/assets/images/notgeneric_bg3-100x50.jpg" data-rotate="0" data-saveperformance="off" data-title="Hiking" data-description="">
<!-- MAIN IMAGE -->
<img src="images/bg_ridesafe.jpg" alt="" class="rev-slidebg" data-bgparallax="10" data-bgposition="center center" data-duration="30000" data-ease="Linear.easeNone" data-kenburns="on" data-no-retina="" data-offsetend="0 0" data-offsetstart="0 0" data-rotateend="0" data-rotatestart="0" data-scaleend="100" data-scalestart="110">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption NotGeneric-Title tp-resizeme rs-parallaxlevel-0 font-light"
id="slide-2-layer-1"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['-45','0','0','0']"
data-fontsize="['70','70','70','45']"
data-lineheight="['70','70','70','50']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="x:[-105%];z:0;rX:0deg;rY:0deg;rZ:-90deg;sX:1;sY:1;skX:0;skY:0;s:2000;e:Power4.easeInOut;"
data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_in="x:0px;y:0px;s:inherit;e:inherit;"
data-mask_out="x:inherit;y:inherit;s:inherit;e:inherit;"
data-start="1000"
data-splitin="chars"
data-splitout="none"
data-responsive_offset="on"
data-elementdelay="0.1"
style="z-index: 5; white-space: nowrap;">How to contribute?
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption NotGeneric-SubTitle tp-resizeme rs-parallaxlevel-0 text-uppercase"
id="slide-2-layer-2"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['5','52','52','51']"
data-fontsize="['16','16','16','18']"
data-lineheight="['24','24','24','24']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_in="y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;s:2000;e:Power4.easeInOut;"
data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_in="x:0px;y:[100%];s:inherit;e:inherit;"
data-mask_out="x:inherit;y:inherit;s:inherit;e:inherit;"
data-start="1500"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
style="z-index: 6; white-space: nowrap;">Bikers can participate by always rolling more and by activating anonymous data collection
</div>
<!-- LAYER NR. 3 -->
<a class="tp-caption button button-border button-rounded button-white rs-parallaxlevel-0"
href="#contact"
id="slide-2-layer-3"
data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['55','125','124','104']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:300;e:Power1.easeInOut;"
data-style_hover="c:rgba(255, 255, 255, 1.00);bc:rgba(255, 255, 255, 1.00);cursor:pointer;"
data-transform_in="y:50px;opacity:0;s:1500;e:Power4.easeInOut;"
data-transform_out="y:[175%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_out="x:inherit;y:inherit;"
data-start="2000"
data-splitin="none"
data-splitout="none"
data-responsive_offset="on"
data-responsive="off"
style="z-index: 9; white-space: nowrap;outline:none;box-shadow:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;">Contact US
</a>
</li>
</ul>
</div>
</div><!-- END REVOLUTION SLIDER -->
</section>
<section class="section" id="project">
<div class="section-container">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="icon-box style-2 sm-mb-30">
<div class="box-container">
<div class="icon-box-icon">
<div class="icon-container">
<div class="ic-icon">
<i class="ion-ios-photos-outline"></i>
</div>
</div>
</div>
<div class="icon-box-text">
<div class="icon-box-lines-top"></div>
<div class="icon-box-lines-bottom"></div>
<h5 class="heading-uppercase">How it works</h5>
<p>RideSafe needs accelerometer and gyroscope data to detect bikers' falls. <br/>Once the lib installed and configured on your app, this will listen for new accelerometer and gyroscope events, storing them in memory (very tiny footprint) before shipping them to the backend.</p>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="icon-box style-2 sm-mb-30">
<div class="box-container">
<div class="icon-box-icon">
<div class="icon-container">
<div class="ic-icon">
<i class="ion-ios-albums-outline"></i>
</div>
</div>
</div>
<div class="icon-box-text">
<div class="icon-box-lines-top"></div>
<div class="icon-box-lines-bottom"></div>
<h5 class="heading-uppercase">Backend & algorithm</h5>
<p>
The RideSafe backend is in charge of receiving data from clients. It is Spring Boot + Kotlin based application backed by Cassandra database<br/>
Fall algorithm detection will be available soon.<br/><br/>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="icon-box style-2">
<div class="box-container">
<div class="icon-box-icon">
<div class="icon-container">
<div class="ic-icon">
<i class="ion-ios-speedometer-outline"></i>
</div>
</div>
</div>
<div class="icon-box-text">
<div class="icon-box-lines-top"></div>
<div class="icon-box-lines-bottom"></div>
<h5 class="heading-uppercase">Android & IPhone library</h5>
<p>
The RideSafe lib is in charge of getting accelerometer and gyroscope data (timestamp, x², y², z²) from your smartphone and then ship them to the <a href="https://github.com/ridesafe/ridesafe-android" target="_blank">RideSafe Backend</a><br/>.
<a href="https://github.com/ridesafe/ridesafe-android" target="_blank">RideSafe Android library</a> is already available.<br/>
IPhone library will be available Q4 2017.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section background-grey" id="plan">
<div class="section-container">
<div class="container">
<div class="paddingbottom-30">
<h3 class="text-center">RideSafe action plan</h3>
<div class="divider divider-center divider-dark"></div>
<p class="text-center">To provide high quality algorithm, Nousmotards will collect user data.</p>
</div>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<!-- Nav tabs - Icon -->
<ul class="nav nav-tabs ico">
<li class="active">
<a href="#first-tab-ico" data-toggle="tab">
<i class="ion-ios-world-outline"></i><span>Data collection</span>
</a>
</li>
<li>
<a href="#second-tab-ico" data-toggle="tab">
<i class="ion-pinpoint"></i><span>Collection fall data</span>
</a>
</li>
<li>
<a href="#third-tab-ico" data-toggle="tab">
<i class="ion-ios-pulse"></i><span>Analysis & improvement</span>
</a>
</li>
<li>
<a href="#fourth-tab-ico" data-toggle="tab">
<i class="ion-android-phone-portrait"></i><span>Embedded algorithm</span>
</a>
</li>
</ul>
<!-- Tab panes - Icon -->
<div class="tab-content ico">
<div class="tab-pane text-center active" id="first-tab-ico">
<p>Our smartphones have accelerometers to measure gyroscope and acceleration forces of individuals, these data can be used to analyse the behaviour: when walking, running, biking and even falling!
<br/>
The self learning algorithms are able to improve the detection of a fall by analysing such data.</p>
</div>
<div class="tab-pane text-center" id="second-tab-ico">
<p>Thanks to professionals and Nousmotards users we will collect fall data. Data and algorithm will be available under the Apache license, this means that the changes and improvements made will be communicated to the community. Commercial use is unrestricted.</p>
</div>
<div class="tab-pane text-center" id="third-tab-ico">
<p>The project is based on the work of Ludwine Probst and Amira Lakhal which detects one type of activity from the accelerometer integrated in smartphones and a self-learning algorithm called machine learning. With data collected we will be able to detect rider's activities and falls.<br/>
</p>
</div>
<div class="tab-pane text-center" id="fourth-tab-ico">
<p>Mobile networks are not available everywhere, the last step of this project is to embedded algorithm on the mobile and update it regularly from server data.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" id="team">
<div class="section-container">
<div class="container">
<h3 class="text-center">Our Team</h3>
<div class="divider divider-center divider-dark"></div>
<p class="text-center marginbottom-50">RideSafe has been launched by <a href="https://www.nousmotards.com">Nousmotards</a>. It is a service platform for bikers, created by 3 engineers and bikers:</p>
<div class="row">
<!-- USER -->
<div class="col-md-4 sm-mb-40">
<div class="profile-card">
<div class="box-container">
<div class="user-image">
<img src="images/team/romaric.jpg" alt="">
</div>
<div class="profile-content">
<h5 class="name heading-uppercase">Romaric Philogène</h5>
<p class="role">Co-founder</p>
<p class="desc">Senior developer and Speed Triple rider</p>
</div>
</div>
</div>
</div>
<!-- USER -->
<div class="col-md-4 sm-mb-40">
<div class="profile-card">
<div class="box-container">
<div class="user-image">
<img src="images/team/remi.jpg" alt="">
</div>
<div class="profile-content">
<h5 class="name heading-uppercase">Rémi Demol</h5>
<p class="role">Co-founder</p>
<p class="desc">Senior developer, S1000XR</p>
</div>
</div>
</div>
</div>
<!-- USER -->
<div class="col-md-4">
<div class="profile-card">
<div class="box-container">
<div class="user-image">
<img src="images/team/pierre.jpg" alt="">
</div>
<div class="profile-content">
<h5 class="name heading-uppercase">Pierre Mavro</h5>
<p class="role">Co-founder</p>
<p class="desc">Senior DevOps, S1000RR and Hornet rider</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section background-grey" id="partnership">
<div class="section-container">
<div class="container">
<h3 class="text-center">Partnerships</h3>
<div class="divider divider-center divider-dark"></div>
<p class="text-center marginbottom-50">Ridesafe are looking for worldwide partners specialised in motorbike and/or technology.</p>
<div class="row">
<!--
<div class="col-md-4">
<div class="icon-box bordered marginbottom-30 animate-divider">
<div class="box-container">
<div class="icon-box-icon circle">
<div class="icon-container">
<i class="ion-thumbsup"></i>
</div>
</div>
<h3>FFMC</h3>
<div class="divider divider-center divider-dark"></div>
<p class="text-center">FFMC, Fédération Française des motards en colère, help us to get in touch with motorbike actors.</p>
</div>
</div>
</div>
-->
<div class="col-md-6">
<div class="icon-box bordered marginbottom-30 animate-divider">
<div class="box-container">
<div class="icon-box-icon circle">
<div class="icon-container">
<i class="ion-social-google"></i>
</div>
</div>
<h3>Google Cloud France</h3>
<div class="divider divider-center divider-dark"></div>
<p class="text-center">Google Cloud has propose credits for data mining and storage.<br/><br/></p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="icon-box bordered marginbottom-30 animate-divider">
<div class="box-container">
<div class="icon-box-icon circle">
<div class="icon-container">
<i class="ion-person-add"></i>
</div>
</div>
<h3>You?</h3>
<div class="divider divider-center divider-dark"></div>
<p class="text-center">Ridesafe are looking for worldwide partners specialised in motorbike and/or technology.<br/><br/></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section owl-section">
<div class="section-container">
<div class="owl-carousel owl-theme owl-single testimonials nav-inside owl-pagination-light owl-controls-light">
<div class="carousel-item">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="icon-32 text-center text-white marginbottom-50">
<i class="fa fa-quote-right"></i>
</div>
<!-- FEEDBACK -->
<div class="feedback text-white text-center">
<p class="quote notopmargin">I drive a motorbike, so there is the whiff of the grim reaper round every corner, especially in London.</p>
<p class="author">Benedict Cumberbatch</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="icon-32 text-center text-white marginbottom-50">
<i class="fa fa-quote-right"></i>
</div>
<!-- FEEDBACK -->
<div class="feedback text-white text-center">
<p class="quote notopmargin">Maybe the bike is more dangerous, but the passion for the car for me is second to the bike.</p>
<p class="author">Valentino Rossi</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="icon-32 text-center text-white marginbottom-50">
<i class="fa fa-quote-right"></i>
</div>
<!-- FEEDBACK -->
<div class="feedback text-white text-center">
<p class="quote notopmargin">Software innovation, like almost every other kind of innovation, requires the ability to collaborate and share ideas with other people, and to sit down and talk with customers and get their feedback and understand their needs.</p>
<p class="author">Bill Gates</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Overlay -->
<div class="overlay">
<div class="overlay-color background-dark-5 opacity-30"></div>
<div class="overlay-image parallax-background" style="background-image: url('images/bg_moto.jpg');" data-stellar-background-ratio="0.4"></div>
</div>
</section>
<section class="section paddingtop-30 paddingbottom-30" id="download">
<div class="section-container">
<h3 class="text-center">Download</h3>
<div class="divider divider-center divider-dark"></div>
<div class="container-fluid paddingleft-30 paddingright-30">
<div class="row feature-box-container">
<div class="col-md-4 sm-mb-30">
<div class="feature-box text-left">
<div class="box-content">
<h3 class="margintop-20 marginbottom-30 text-white">RideSafe Backend</h3>
<p class="lead marginbottom-30 text-white">The RideSafe backend is in charge of receiving data from clients. It is Spring Boot + Kotlin based application backed by Cassandra database</p>
<a href="https://github.com/ridesafe/ridesafe-backend/archive/prod.zip" class="button button-border button-rounded button-white nomargin">Download</a>
</div>
<!-- Overlay -->
<div class="overlay">
<div class="overlay-image cover-background" style="background-image: url('images/bg_download_java.jpg');"></div>
<div class="overlay-color background-dark opacity-40"></div>
</div>
</div>
</div>
<div class="col-md-4 sm-mb-30">
<div class="feature-box text-left">
<div class="box-content">
<h3 class="margintop-20 marginbottom-30 text-white">RideSafe Android</h3>
<p class="lead marginbottom-30 text-white">The RideSafe lib is in charge of getting accelerometer and gyroscope data (timestamp, x², y², z²) from your smartphone and then ship them to the RideSafe Backend.</p>
<a href="https://github.com/ridesafe/ridesafe-android/archive/master.zip" class="button button-border button-rounded button-white nomargin">Download</a>
</div>
<!-- Overlay -->
<div class="overlay">
<div class="overlay-image cover-background" style="background-image: url('images/bg_download_android.jpg');"></div>
<div class="overlay-color background-dark opacity-40"></div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="feature-box text-left">
<div class="box-content">
<h3 class="margintop-20 marginbottom-30 text-white">RideSafe IOS</h3>
<p class="lead marginbottom-30 text-white">Coming Q4 2017.</p>
</div>
<!-- Overlay -->
<div class="overlay">
<div class="overlay-image cover-background" style="background-image: url('images/bg_download_ios.jpg');"></div>
<div class="overlay-color background-dark opacity-40"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section paddingtop-65 background-grey" id="contact">
<div class="section-container">
<div class="container text-center">
<h3>Want more informations or contribute?</h3>
<a href="mailto:[email protected]" class="button button-rounded nobottommargin">Contact Us</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="site-footer section nobottompadding background-grey notoppadding">
<div class="section-container">
<!-- Copyright -->
<div class="copyright background-white">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6 text-left">
Ridesafe
</div>
<div class="col-md-6 col-sm-6">
<nav class="socials-icons pull-right">
<ul>
<li><a href="https://www.facebook.com/nousmotardsapp" target="_blank" class="social-icon social-clear"><i class="ion-social-facebook"></i></a></li>
<li><a href="https://twitter.com/Nousmotards" target="_blank" class="social-icon social-clear"><i class="ion-social-twitter"></i></a></li>
<li><a href="https://fr.pinterest.com/nousmotards/" target="_blank" class="social-icon social-clear"><i class="ion-social-pinterest"></i></a></li>
</ul>
</nav>
</div>
</div>
</div>
</div><!-- .copyright end -->
</div>
</footer><!-- .site-footer end -->
<button class="backToTop"><i class="fa fa-angle-up"></i></button>
</div>
<!-- JS -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/plugins.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<!-- REVOLUTION JS FILES -->
<script type="text/javascript" src="include/rs-plugin/js/jquery.themepunch.tools.min.js"></script>
<script type="text/javascript" src="include/rs-plugin/js/jquery.themepunch.revolution.min.js"></script>
<!-- SLIDER REVOLUTION 5.0 EXTENSIONS
(Load Extensions only on Local File Systems !
The following part can be removed on Server for On Demand Loading) -->
<script type="text/javascript" src="include/rs-plugin/js/extensions/revolution.extension.video.min.js"></script>
<script type="text/javascript" src="include/rs-plugin/js/extensions/revolution.extension.slideanims.min.js"></script>
<script type="text/javascript" src="include/rs-plugin/js/extensions/revolution.extension.actions.min.js"></script>
<script type="text/javascript" src="include/rs-plugin/js/extensions/revolution.extension.layeranimation.min.js"></script>
<script type="text/javascript" src="include/rs-plugin/js/extensions/revolution.extension.kenburn.min.js"></script>
<script type="text/javascript" src="include/rs-plugin/js/extensions/revolution.extension.navigation.min.js"></script>
<script type="text/javascript" src="include/rs-plugin/js/extensions/revolution.extension.migration.min.js"></script>
<script type="text/javascript" src="include/rs-plugin/js/extensions/revolution.extension.parallax.min.js"></script>
<script type="text/javascript">
var tpj=jQuery;
tpj.noConflict();
tpj(document).ready(function() {
if(tpj(".rev_slider").revolution == undefined){
revslider_showDoubleJqueryError(".rev_slider");
}else{
var revApi = tpj(".rev_slider").show().revolution({
sliderType:"standard",
jsFileLocation:"../../revolution/js/",
sliderLayout:"fullscreen",
dottedOverlay:"none",
delay:9000,
navigation: {
keyboardNavigation:"on",
keyboard_direction: "horizontal",
mouseScrollNavigation:"off",
onHoverStop:"off",
arrows: {
style: "uranus",
enable: true,
hide_onmobile: true,
hide_under: 600,
hide_onleave: true,
tmp: '',
left: {
h_align: "left",
v_align: "center",
h_offset: 10,
v_offset: 0
},
right: {
h_align: "right",
v_align: "center",
h_offset: 10,
v_offset: 0
}
},
bullets: {
enable: true,
hide_onmobile: false,
style: "hermes",
hide_onleave: true,
direction: "horizontal",
h_align: "center",
v_align: "bottom",
h_offset: 0,
v_offset: 30,
space: 5,
tmp: ''
},
touch:{
touchenabled:"on",
swipe_threshold: 75,
swipe_min_touches: 1,
swipe_direction: "horizontal",
drag_block_vertical: false
}
},
responsiveLevels:[1200,991,768,480],
visibilityLevels: [1200, 991, 768, 480],
gridwidth:[1200,991,768,480],
gridheight:[868,768,768,720],
lazyType:"none",
parallax: {
type:"mouse",
origo:"slidercenter",
speed:2000,
levels:[2,3,4,5,6,7,12,16,10,50],
disable_onmobile:"on"
},
shadow:0,
spinner:"off",
stopLoop:"on",
stopAfterLoops:0,
stopAtSlide:1,
shuffle:"off",
autoHeight:"off",
fullScreenAlignForce:"off",
fullScreenOffsetContainer: "",
fullScreenOffset: "0px",
hideThumbsOnMobile:"off",
hideSliderAtLimit:0,
hideCaptionAtLimit:0,
hideAllCaptionAtLilmit:0,
debugMode:false,
fallbacks: {
simplifyAll:"off",
nextSlideOnWindowFocus:"off",
disableFocusListener:false
}
});
}
});
</script>
</body>
</html>