-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1366 lines (1260 loc) · 46.7 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
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="zxx" class="no-js">
<head>
<!-- Mobile Specific Meta -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Favicon-->
<link rel="shortcut icon" href="img/logo.png" />
<!-- Author Meta -->
<meta name="author" content="Yadev Jayachandran" />
<!-- Meta Description -->
<meta
name="description"
content="Yadev Jayachandran is a maker, designer and a developer, who loves building products and engaging with people and working on building products that could go into the global market."
/>
<!-- Meta Keyword -->
<meta
name="keywords"
content="Yadev, yadev, Yadev Jayachandran, maker, yadev64, Yadev64, yadev.jayachandran, designer, developer, yadev.co"
/>
<!-- meta character set -->
<meta charset="UTF-8" />
<!-- Site Title -->
<title>Yadev Jayachandran - Home</title>
<link
href="https://fonts.googleapis.com/css?family=Poppins:100,200,400,300,500,600,700"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=DM+Mono&display=swap"
rel="stylesheet"
/>
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700,900" rel="stylesheet"> -->
<!--
CSS
============================================= -->
<link rel="stylesheet" href="css/linearicons.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<link rel="stylesheet" href="css/nice-select.css" />
<link rel="stylesheet" href="css/animate.min.css" />
<link rel="stylesheet" href="css/owl.carousel.css" />
<link rel="stylesheet" href="css/main.css" />
<style>
html {
scroll-behavior: smooth;
}
</style>
</head>
<body ontouchstart="">
<!-- Start Preloader Area -->
<div class="preloader-area">
<div class="loader-box">
<div class="loader"></div>
</div>
</div>
<!-- End Preloader Area -->
<!-- Start Header Area -->
<header id="header">
<div class="container main-menu">
<div class="row align-items-center d-flex">
<div id="logo">
<a href="index.html"
><img src="img/logo.png" width="40px" alt="" title=""
/></a>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class=""><a class="active" href="index.html">Home</a></li>
<!-- <li><a href="https://projects.yadev.co" target="_blank">Projects</a></li> -->
<li class="menu-has-children">
<a href="#">Videos & Podcasts</a>
<ul>
<li>
<a
href="https://www.youtube.com/channel/UCToxZRXSgjWInI-PE9wGQ3w"
target="_blank"
>Curioxity TV</a
>
</li>
<li>
<a
href="https://open.spotify.com/show/45Bua9lmVNGYp2RCk0PmOR"
target="_blank"
>Curioxity Voice</a
>
</li>
<!-- <li><a href="services.html">Service</a></li>
<li><a href="portfolio-details.html">Portfolio Details</a></li> -->
</ul>
</li>
<li><a href="https://www.behance.net/yadev64">Creatives</a></li>
<li><a href="about.html">About me</a></li>
</ul>
</nav>
</div>
</div>
</header>
<!-- End Header Area -->
<!-- start banner Area -->
<section class="updated-banner-area">
<div class="container">
<div class="row fullscreen d-flex align-items-center">
<div
class="banner-content col-lg-12 col-md-12 justify-content-center"
>
<div
class="me wow fadeInDown"
data-wow-duration="1s"
data-wow-delay="0.7s"
>
Hi, I'm
</div>
<h1
class="wow fadeInUp h1-cover"
data-wow-duration="1s"
data-wow-delay="1.0s"
>
Yadev Jayachandran
</h1>
<div
class="designation mb-50 wow fadeInUp"
data-wow-duration="1s"
data-wow-delay="1.3s"
>
A technologist, designer & educator who loves to experiment on
the edge of
<span class="designer">Design</span>
and
<span class="developer">Technology</span>
</div>
<div
class="footer-social wow fadeInUp"
data-wow-duration="1s"
data-wow-delay="1.8s"
>
<a
href="https://www.linkedin.com/in/yadev-jayachandran/"
target="_blank"
><i class="fa fa-linkedin"></i
></a>
<a href="https://www.behance.net/yadev64" target="_blank"
><i class="fa fa-behance"></i
></a>
<a href="https://github.com/yadev64" target="_blank"
><i class="fa fa-github"></i
></a>
<a
href="https://www.facebook.com/yadev.jayachandran"
target="_blank"
><i class="fa fa-facebook"></i
></a>
<!-- <a href="https://twitter.com/yadev64" target="_blank"
><i class="fa fa-twitter"></i
></a> -->
<a href="https://www.instagram.com/yadev64/" target="_blank"
><i class="fa fa-instagram"></i
></a>
</div>
<!-- <a href="#contact" class="primary-btn" data-text="Get in touch">
<span>C</span>
<span>o</span>
<span>n</span>
<span>t</span>
<span>a</span>
<span>c</span>
<span>t</span>
</a> -->
</div>
<!-- Image goes here -->
<!-- <div class="banner-img col-lg-6 col-md-6 align-self-end">
<img class="img-fluid" src="img/yadev.png" alt="">
</div> -->
</div>
</div>
</section>
<!-- End banner Area -->
<!-- Start brands Area -->
<section class="brands-area circle" id="explore">
<div class="container">
<div class="brand-wrap">
<div
class="row align-items-center active-brand-carusel justify-content-start no-gutters"
>
<!-- active-brand-carusel -->
<div class="col single-brand">
<a href="https://www.behance.net/yadev64" target="_blank"
><img
class="mx-auto"
src="img/brand/b1.png"
alt=""
style="height: 20px; padding-top: 5px"
/></a>
</div>
<div class="col single-brand">
<a
href="https://www.linkedin.com/in/yadev-jayachandran/"
target="_blank"
><img
class="mx-auto"
src="img/brand/b2.png"
alt=""
style="height: 28px"
/></a>
</div>
<!-- <div class="col single-brand">
<a href="#curioxity"
><img
class="mx-auto"
src="img/brand/b3.png"
alt=""
style="height: 25px"
/></a>
</div> -->
<div class="col single-brand">
<a href="https://github.com/yadev64" target="_blank"
><img
class="mx-auto"
src="img/brand/b4.png"
alt=""
style="height: 20px"
/></a>
</div>
<!-- <div class="col single-brand">
<a href="https://dribbble.com/yadev64" target="_blank"
><img
class="mx-auto"
src="img/brand/b5.png"
alt=""
style="height: 20px"
/></a>
</div> -->
<div class="col single-brand">
<a href="https://instagram.com/yadev64" target="_blank"
><img
class="mx-auto"
src="img/brand/b7.png"
alt=""
style="height: 20px"
/></a>
</div>
<div class="col single-brand">
<a href="https://medium.com/@yadevjayachandran" target="_blank"
><img
class="mx-auto"
src="img/brand/b6.png"
alt=""
style="height: 20px"
/></a>
</div>
</div>
</div>
</div>
</section>
<!-- End brands Area -->
<!-- Start Work Area Area -->
<section class="work-area section-gap-bottom-90" id="work">
<div class="container">
<div class="row d-flex justify-content-between align-items-end mb-80">
<!-- <div class="col-lg-6">
<div class="section-title">
<h2>Latest Works</h2>
<p>Analyze, design and create. Here are some of my recent works.</p>
</div>
</div> -->
<div class="col-lg-12">
<div class="filters">
<ul>
<li data-filter=".tech">Technology</li>
<li data-filter=".design">Design</li>
<li data-filter=".people">People</li>
<li class="active" data-filter=".all">All</li>
<!-- <li data-filter=".misc">misc</li> -->
<!-- <li data-filter=".events">Events</li> -->
</ul>
</div>
</div>
</div>
<div class="filters-content">
<div class="row grid">
<div
class="single-work col-lg-6 col-md-6 col-sm-12 all tech design"
data-wow-duration="0.3s"
data-wow-delay="0.7s"
>
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img
class="image img-fluid"
src="img/work/sbox.jpg"
loading="lazy"
alt=""
/>
</div>
<div class="middle">
<h4>SBox</h4>
<br />
<div class="cat">
A platform that enables authorities to live monitor rash
driving and accidents and predict future accidents
</div>
</div>
<a
class="overlay"
href="https://www.youtube.com/watch?v=QUpg5fXCMTQ&ab_channel=yadevjayachandran"
></a>
</div>
</div>
<div
class="single-work col-lg-6 col-md-6 col-sm-12 all tech design"
data-wow-duration="0.3s"
data-wow-delay="0.7s"
>
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img
class="image img-fluid"
src="img/work/gmadb.png"
loading="lazy"
alt=""
/>
</div>
<div class="middle">
<h4>GMADB</h4>
<br />
<div class="cat">
GMADB is a GUI based Minimal ADB that helps you work on
modifying your Android device via the Android Debug Bridge
</div>
</div>
<a class="overlay" href="https://github.com/yadev64/GMADB"></a>
</div>
</div>
<div
class="single-work col-lg-6 col-md-6 col-sm-12 all tech design"
data-wow-duration="0.3s"
data-wow-delay="0.7s"
>
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img
class="image img-fluid"
src="img/work/convivial.png"
loading="lazy"
alt=""
/>
</div>
<div class="middle">
<h4>Convivial</h4>
<br />
<div class="cat">
Event management dashboard for admins, where the user can
create events, assign ticket values based on catagory,
purchase tickets for customers, see purchase statistics,
event performance and more
</div>
</div>
<a
class="overlay"
href="https://github.com/yadev64/convivial"
></a>
</div>
</div>
<div
class="single-work col-lg-6 col-md-6 col-sm-12 all people misc"
data-wow-duration="0.3s"
>
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="img/work/idea.png" alt="" />
</div>
<div class="middle">
<h4>Ideation Deck</h4>
<br />
<div class="cat">
A guide for creating amazing ideas for any given scenario
</div>
</div>
<a
class="overlay"
href="https://payge.io/standard/EpADLn"
target="_blank"
></a>
</div>
</div>
<div
class="single-work col-lg-6 col-md-6 col-sm-12 all tech"
data-wow-duration="0.3s"
data-wow-delay="0.2s"
>
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img
class="image img-fluid"
src="img/work/w2.jpg"
loading="lazy"
alt=""
/>
</div>
<div class="middle">
<h4>TravelX</h4>
<br />
<div class="cat">Travellers pillow of the future</div>
</div>
<a
class="overlay"
href="https://sites.google.com/view/sleepx/home"
loading="lazy"
target="_blank"
></a>
</div>
</div>
<div
class="single-work col-lg-6 col-md-6 col-sm-12 all tech"
data-wow-duration="0.3s"
data-wow-delay="0.3s"
>
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img
class="image img-fluid"
src="img/work/sdock.jpg"
loading="lazy"
alt=""
/>
</div>
<div class="middle">
<h4>SDock</h4>
<br />
<div class="cat">
A smartphone multimedia device to keep up the entertainment
at the peak
</div>
</div>
<a class="overlay" href="#"></a>
</div>
</div>
<div
class="single-work col-lg-6 col-md-6 col-sm-12 all code design"
data-wow-duration="0.3s"
data-wow-delay="0.5s"
>
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img
class="image img-fluid"
src="img/work/weatheroxity.jpg"
loading="lazy"
alt=""
/>
</div>
<div class="middle">
<h4>Weatheroxity</h4>
<br />
<div class="cat">
A simple, single page weather app for android.
</div>
</div>
<a
class="overlay"
href="https://www.behance.net/gallery/114536511/Weatheroxity-Weather-app-UI-design-concept"
></a>
</div>
</div>
<div
class="single-work col-lg-6 col-md-6 col-sm-12 all design tech design"
data-wow-duration="0.3s"
data-wow-delay="0.6s"
>
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img
class="image img-fluid"
src="img/work/DC.jpg"
loading="lazy"
alt=""
/>
</div>
<div class="middle">
<h4>Data Collector</h4>
<br />
<div class="cat">
A simplified way to collect motion data and record it as CSV
for training your ML models.
</div>
</div>
<a
class="overlay"
href="https://github.com/yadev64/Android-Sensor-Data-Collector"
></a>
</div>
</div>
<!-- <div
class="single-work col-lg-6 col-md-6 col-sm-12 all tech"
data-wow-duration="0.3s"
data-wow-delay="0.8s"
>
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img
class="image img-fluid"
src="img/work/light.jpg"
loading="lazy"
alt=""
/>
</div>
<div class="middle">
<h4>Floating light</h4>
<br />
<div class="cat">
A decorative light with levitating switch
</div>
</div>
<a class="overlay" href="#"></a>
</div>
</div> -->
<div
class="single-work col-lg-6 col-md-6 col-sm-12 all tech"
data-wow-duration="0.3s"
data-wow-delay="0.4s"
>
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img
class="image img-fluid"
src="img/work/helmodio.jpg"
loading="lazy"
alt=""
/>
</div>
<div class="middle">
<h4>Helmodio</h4>
<br />
<div class="cat">
Helmet with built-in music system for riders.
</div>
</div>
<a class="overlay" href="#"></a>
</div>
</div>
<div
class="single-work col-lg-6 col-md-6 col-sm-12 all tech"
data-wow-duration="0.3s"
data-wow-delay="0.9s"
>
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img
class="image img-fluid"
src="img/work/micro.jpg"
loading="lazy"
alt=""
/>
</div>
<div class="middle">
<h4>DIY Microscope</h4>
<br />
<div class="cat">
A simple cost effective digital microscope with upto 300X
magnification
</div>
</div>
<a class="overlay" href="#"></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Start Service Area -->
<!-- <section class="service-area section-gap" style="background-color: white;">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="single-service wow fadeInUp" style=" background-color:blanchedalmond;height: 300px;box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);color: darkgoldenrod;height: 300px;"
data-wow-duration="1s">
<a class="overlay" href="https://projects.yadev.co" target="_blank"></a>
<span class="lnr lnr-rocket"></span>
<h4 style="color: darkgoldenrod;">
<span>Projects</span>
</h4>
<p>Have a look at some of my projects.</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-service wow fadeInUp" style="background-color:blanchedalmond; background-color:blanchedalmond;box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1); color: darkgoldenrod;height: 300px;"
data-wow-duration="1s" data-wow-delay="0.2s">
<a class="overlay" href="#curioxity"></a>
<span class="lnr lnr-home"></span>
<h4 style="color: darkgoldenrod;"><span>Curioxity Club</span>
</h4>
<p>Curious to know more? This one's for you.</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-service wow fadeInUp" style="background-color:blanchedalmond; background-color:blanchedalmond;box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1); color: darkgoldenrod; height: 300px;"
data-wow-duration="1s" data-wow-delay="0.4s">
<a class="overlay" href="https://design.yadev.co" target="_blank"></a>
<span class="lnr lnr-screen"></span>
<h4 style="color: darkgoldenrod;"><span>Design</span>
</h4>
<p>It's always fun to see the colors do magic.</p>
</div>
</div>
<div class="col-lg-3 col-md-6 sty">
<div class="single-service wow fadeInUp" style="background-color:blanchedalmond; background-color:blanchedalmond;box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1); color: darkgoldenrod;height: 300px;"
data-wow-duration="1s" data-wow-delay="0.6s">
<a class="overlay" href="https://blog.yadev.co" target="_blank"></a>
<span class="lnr lnr-smile"></span>
<h4 style="color: darkgoldenrod;"><span>Experience diaries</span>
</h4>
<p>Making an impact in the lives of many.</p>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Service Area -->
<!-- Start About Area -->
<!-- <section class="about-area section-gap">
<div class="container">
<div class="row align-items-center justify-content-between">
<div class="col-lg-6 about-left">
<img class="img-fluid" src="img/about-img.jpg" alt="">
</div>
<div class="col-lg-5 col-md-12 about-right">
<div class="section-title">
<h2>about myselt</h2>
</div>
<div class="mb-50 wow fadeIn" data-wow-duration=".8s">
<p>
inappropriate behavior is often laughed off as “boys will be boys,” women face higher conduct standards especially in the
workplace. That’s why it’s crucial that, as women, our behavior on the job is beyond reproach. inappropriate behavior
is often laughed. inappropriate behavior is often laughed off as “boys will be boys,” women face higher.
</p>
<p>That’s why it’s crucial that, as women, our behavior on the job is beyond reproach. inappropriate behavior is often
laughed.
</p>
</div>
<a href="#" class="primary-btn white" data-text="More Info">
<span>M</span>
<span>o</span>
<span>r</span>
<span>e</span>
<span> </span>
<span>I</span>
<span>n</span>
<span>f</span>
<span>o</span>
</a>
<a href="#" class="primary-btn" data-text="Resume">
<span>R</span>
<span>e</span>
<span>s</span>
<span>u</span>
<span>m</span>
<span>e</span>
</a>
</div>
</div>
</div>
</section> -->
<!-- End About Area -->
<!-- Start Work Area Area -->
<!-- <section class="work-area section-gap-top section-gap-bottom-90" id="work">
<div class="container">
<div class="row d-flex justify-content-between align-items-end mb-80">
<div class="col-lg-6">
<div class="section-title">
<h2>Latest Works</h2>
<p>Analyze, design and create. Here are some of my recent works.</p>
</div>
</div>
<div class="col-lg-6">
<div class="filters">
<ul>
<li class="active" data-filter=".all">All</li>
<li data-filter=".hw">HW projects</li>
<li data-filter=".code">code</li>
<li data-filter=".design">Design</li>
<li data-filter=".misc">misc</li>
</ul>
</div>
</div>
</div>
<div class="filters-content">
<div class="row grid">
<div class="single-work col-lg-4 col-md-6 col-sm-12 all design misc wow fadeInUp" data-wow-duration="0.9s">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="img/work/idea.png" alt="">
</div>
<div class="middle">
<h4>Ideation Deck</h4><br>
<div class="cat">A guide for creating amazing ideas for any given scenario</div>
</div>
<a class="overlay" href="https://payge.io/standard/EpADLn" target="_blank"></a>
</div>
</div>
<div class="single-work col-lg-4 col-md-6 col-sm-12 all hw wow fadeInUp" data-wow-duration="0.9s" data-wow-delay="0.2s">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="img/work/w2.jpg" alt="">
</div>
<div class="middle">
<h4>TravelX</h4><br>
<div class="cat">Travellers pillow of the future</div>
</div>
<a class="overlay" href="https://travelx.yadev.co" target="_blank"></a>
</div>
</div>
<div class="single-work col-lg-4 col-md-6 col-sm-12 all hw wow fadeInUp" data-wow-duration="0.9s" data-wow-delay="0.3s">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="img/work/sdock.jpg" alt="">
</div>
<div class="middle">
<h4>SDock</h4><br>
<div class="cat"> A smartphone multimedia device to keep up the entertainment at the peak</div>
</div>
<a class="overlay" href="#"></a>
</div>
</div>
<div class="single-work col-lg-4 col-md-6 col-sm-12 all hw wow fadeInUp" data-wow-duration="0.9s" data-wow-delay="0.4s">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="img/work/helmodio.jpg" alt="">
</div>
<div class="middle">
<h4>Helmodio</h4><br>
<div class="cat">Helmet with built-in music system for riders.</div>
</div>
<a class="overlay" href="#"></a>
</div>
</div>
<div class="single-work col-lg-4 col-md-6 col-sm-12 all code design wow fadeInUp" data-wow-duration="0.9s" data-wow-delay="0.5s">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="img/work/weatheroxity.jpg" alt="">
</div>
<div class="middle">
<h4>Weatheroxity</h4><br>
<div class="cat">A simple, single page weather app for android.</div>
</div>
<a class="overlay" href="#"></a>
</div>
</div>
<div class="single-work col-lg-4 col-md-6 col-sm-12 all code design wow fadeInUp" data-wow-duration="0.9s" data-wow-delay="0.6s">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="img/work/DC.jpg" alt="">
</div>
<div class="middle">
<h4>Data Collector</h4><br>
<div class="cat">A simplified way to collect motion data and record it as CSV for training your ML models.</div>
</div>
<a class="overlay" href="#"></a>
</div>
</div>
<div class="single-work col-lg-4 col-md-6 col-sm-12 all code design wow fadeInUp" data-wow-duration="0.9s" data-wow-delay="0.7s">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="img/work/sbox.jpg" alt="">
</div>
<div class="middle">
<h4>SBox</h4><br>
<div class="cat"> A platform that enables authorities to live monitor rash driving and accidents and predict future accidents</div>
</div>
<a class="overlay" href="#"></a>
</div>
</div>
<div class="single-work col-lg-4 col-md-6 col-sm-12 all hw wow fadeInUp" data-wow-duration="0.9s" data-wow-delay="0.8s">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="img/work/light.jpg" alt="">
</div>
<div class="middle">
<h4>Floating light</h4><br>
<div class="cat"> A decorative light with levitating switch</div>
</div>
<a class="overlay" href="#"></a>
</div>
</div>
<div class="single-work col-lg-4 col-md-6 col-sm-12 all hw wow fadeInUp" data-wow-duration="0.9s" data-wow-delay="0.9s">
<div class="relative">
<div class="thumb">
<div class="overlay overlay-bg"></div>
<img class="image img-fluid" src="img/work/micro.jpg" alt="">
</div>
<div class="middle">
<h4>DIY Microscope</h4><br>
<div class="cat"> A simple cost effective digital microscope with upto 300X magnification</div>
</div>
<a class="overlay" href="#"></a>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Work Area Area -->
<!-- Start BLOG -->
<!-- <section class="testimonials_area section-gap ">
<div class="container">
<div class="row d-flex justify-content-between align-items-end mb-80">
<div class="col-lg-6">
<div class="section-title">
<h2>Blog</h2>
<p>Writing is the best way to share experiences. Read on to hear about some amazing stuffs that happened throughout the
time.</p>
<br><a href="https://blog.yadev.co" target="_blank" class="primary-btn white" data-text="Let's go">
<span>B</span>
<span>l</span>
<span>o</span>
<span>g</span>
</a>
</div>
</div>
<div class="col-lg-6">
<section class="pod-area">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-12">
<div class="footer-top flex-column">
<div class=" single-service wow fadeInUp footer-social">
<h4 style="color: black;">Also read on</h4>
<a href="#" target="_blank"><i class="fa fa-medium" style="color:rgb(129, 255, 129);"></i></a>
<a href="#" target="_blank"><i class="fa fa-linkedin" style="color: blue;"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<div class="testi_slider owl-carousel">
<div class="item">
<div class="testi_item">
<img src="img/quote.png" alt=""">
<h4>The two views</h4>
<ul class="list">
<li><a href="#"><i class="fa fa-star"></i></a></li>
</ul>
<div class="wow fadeIn" data-wow-duration="1s">
<p>
It was a pretty Sunday morning, packed-up with a good set of works to be completed and a lot of travel to be done. So,
as usual, packed up everything and started my day with the Ted Talks Daily podcasts...
</p>
<br><a href="https://www.linkedin.com/pulse/two-views-yadev-jayachandran/" target="_blank" class="primary-btn white" data-text="Continue reading">
<span>B</span>
<span>l</span>
<span>o</span>
<span>g</span>
<span> </span>
<span>-</span>
<span>></span>
</a>
</div>
</div>
</div>
<div class="item">
<div class="testi_item">
<img src="img/quote.png" alt="">
<h4>Developer Communities 101 - Introduction</h4>
<ul class="list">
<li><a href="#"><i class="fa fa-star"></i></a></li>
</ul>
<div class="wow fadeIn" data-wow-duration="1s">
<p>
Are you a technology lover who wants to go beyond the limits of your current possibilities? Then, you should know about
developer communities.
Developer Communities are a group of people who...
</p>
<br><a href="https://www.linkedin.com/pulse/developer-communities-101-introduction-yadev-jayachandran/" target="_blank" class="primary-btn white" data-text="Continue reading">
<span>B</span>
<span>l</span>
<span>o</span>
<span>g</span>
<span> </span>
<span>-</span>
<span>></span>
</a>
</div>
</div>
</div>
<div class="item">
<div class="testi_item">
<img src="img/quote.png" alt="">
<h4>Random Experiments</h4>
<ul class="list">
<li><a href="#"><i class="fa fa-star"></i></a></li>
</ul>
<div class="wow fadeIn" data-wow-duration="1s">
<p>
was the beginning of the year 2019 and just a month since I joined Kerala Startup Mission as a Technology Innovation
Fellow in Community development. Although...
</p>
<br><a href="https://medium.com/@yadevjayachandran/random-experiments-4e5e0884deb1" target="_blank" class="primary-btn white" data-text="Continue reading">
<span>B</span>
<span>l</span>
<span>o</span>
<span>g</span>
<span> </span>
<span>-</span>