-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1068 lines (1052 loc) · 48.5 KB
/
Copy pathindex.html
File metadata and controls
1068 lines (1052 loc) · 48.5 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Adding the fav icon-->
<link rel="shortcut icon" href="/img/favicon.ico" />
<!-- Import font awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css"
/>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap"
rel="stylesheet"
/>
<!--Import Google Icon Font-->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!--Import materialize.css-->
<!-- <link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
/> -->
<link
type="text/css"
rel="stylesheet"
href="css/materialize.css"
media="screen,projection"
/>
<!-- Link to local CSS -->
<link
type="text/css"
rel="stylesheet"
href="css/typography.css"
media="screen,projection"
/>
<link
type="text/css"
rel="stylesheet"
href="css/about.css"
media="screen,projection"
/>
<link
type="text/css"
rel="stylesheet"
href="css/index.css"
media="screen,projection"
/>
<title>Gayathri R | Full stack web developer</title>
</head>
<body>
<div class="content-wrapper">
<!-- NAV BAR -->
<header>
<div class="navbar-fixed">
<nav class="nav-wrapper white">
<div class="container">
<a
href="/assets/gayathri_ram.pdf"
download="Gayathri_Ram_FSE"
class="tooltipped brand-logo left"
data-tooltip="Download Resume"
>
<img
class="responsive-img"
src="/img/Logo_s.png"
width="40"
height="auto"
/></a>
<a
href=""
class="sidenav-trigger right"
data-target="mobile-links"
>
<i class="material-icons black-text">menu</i>
</a>
<ul class="right hide-on-med-and-down">
<li class="active">
<a href="index.html" class="black-text normal-text"
>Projects</a
>
</li>
<li>
<a href="about.html" class="black-text normal-text">About</a>
</li>
</ul>
</div>
</nav>
<progress value="0" max="100" class="progress-bar"></progress>
</div>
<ul class="sidenav black" id="mobile-links">
<li class="active">
<a href="index.html" class="white-text normal-text">Projects</a>
</li>
<li>
<a href="about.html" class="white-text normal-text">About</a>
</li>
</ul>
<div class="banner">
<div class="container valign-wrapper">
<div class="row">
<!-- BANNER TITLE AND SUB-TITLE -->
<div class="name-title col s10 m10 l12">
Gayathri Ramakrishnan
</div>
<div class="sub-title col s12 m10 l12">
Full stack web developer
</div>
<div class="row"></div>
<div class="row"></div>
<!-- BANNER CONTENT -->
<div class="normal-flow-text col s12 m10 l7">
I am a <span class="highlights">curious</span>, passionate and
highly motivated full stack developer. I enjoy bringing ideas to
life with <span class="highlights">human-centered design</span>.
I thrive on <span class="highlights">continuous learning</span>,
resolving complex use cases and tackling tricky architectures. I
take immense pleasure in observing humans and
<span class="highlights">embracing diversity.</span>
</div>
<div class="row"></div>
<div class="row"></div>
<!-- BANNER FOOTER -->
<div class="banner-footer col s12 m10 l10">
Previously at <span class="highlights">Cognizant</span> and
<span class="highlights">Likeminds</span>
</div>
<div class="row"></div>
<div class="col s1 m1 l1">
<a
href="mailto:gayathri.t.ramakrishnan@gmail.com"
class="tooltipped btn-floating pulse gradient-pink "
data-tooltip="Send Email to Gayathri"
>
<i class="far fa-envelope"></i>
</a>
</div>
</div>
</div>
</div>
<!-- END OF NAV-BAR FIXED-->
</header>
<!-- PROJECTS -->
<main class="project-section">
<!-- START OF PROJECTS CONTAINER -->
<section class="container">
<div class="gutter"></div>
<!-- SELECTED PROJECTS HEADER -->
<h1 class="center-align highlights">
Selected Projects
</h1>
<div class="gutter"></div>
<div class="row scrollspy" id="projects">
<!-- JUST HELP CARD - START -->
<div class="col s12 m6 l5">
<div class="card hoverable">
<div class="card-image">
<img src="/img/justhelp.png" alt="just help project" />
<a
href="#justhelp_modal"
class="tooltipped halfway-fab btn-floating gradient-pink pulse modal-trigger"
data-tooltip="Feature Demo video"
data-position="top"
>
<i class="fab fa-youtube"></i>
</a>
</div>
<!-- MODAL FOR JUST HELP - START -->
<div id="justhelp_modal" class="modal">
<div class="modal-content">
<div class="row">
<div class="col s12 l12">
<a
href="#projects"
class="btn-floating modal-action modal-close right pink darken-3"
onclick="$('#justhelp_modal').closeModal();"
><i class="fas fa-times"></i
></a>
</div>
</div>
<div class="video-container">
<iframe
width="853"
height="480"
src="//www.youtube.com/embed/pLtPY3Z6dXA?rel=0"
frameborder="0"
allowfullscreen
></iframe>
</div>
</div>
</div>
<!-- MODAL FOR JUST HELP - END -->
<div class="card-content">
<span class="card-title pink-text text-darken-3"
>Just Help</span
>
<span class="card-sub-title-text"
>Front-end Architect & Developer</span
>
<br /><br />
<span class="card-sub-title-text pink-text text-darken-3">
Tech Stack:
</span>
<p class="card-normal-text">
• HTML5/CSS3, JS, React, Redux<br />
• Axios, REST APIs <br />
• Figma(UX design), Netlify, Git/GitHub
</p>
</div>
<div class="card-action center-align">
<a
href="#casestudy-justhelp"
class="normal-link-text pink-text text-darken-3 modal-trigger"
>View case study</a
>
<!-- MODAL VIEW FULL CASE STUDY - JUST HELP - START -->
<div class="modal" id="casestudy-justhelp">
<div class="modal-content">
<div class="row"></div>
<div class="row">
<div class="col s10 l10">
<h3 class="pink-text text-darken-3">Case study - Just Help</h3>
</div>
<div class="col s2 l2">
<a
href="#projects"
class="tooltipped btn-floating modal-action modal-close right pink darken-3"
data-tooltip="Close"
onclick="$('#casestudy-sleeptracker').closeModal();"
><i class="fas fa-times"></i
></a>
</div>
</div>
<!-- Responsibilities, challenges, learnings, contributions -->
<div class="row">
<div class="col s12 l10 offset-l1 casestudy-cards">
<h4 class="left-align pink-text text-darken-3">About</h4>
<p class="normal-medium-text">
This app generates a random act of kindness. Nowadays, its very easy to get lost in our busy lives. For anybody who needs to keep track and act upon a random act of kindness, this app is a great fit.
</p>
</div>
</div>
<div class="row">
<div
class="col s12 l10 offset-l1 center-align casestudy-cards"
>
<h4 class="left-align pink-text text-darken-3">
Responsibilities
</h4>
<p class="normal-medium-text">
<span
class="normal-large-p-title-text pink-text text-darken-3"
>Designed and developed: </span
><br />
• the front end for the application. Designed in Figma and Developed using React/Redux <br />
• the end points to integrated with the back end<br />
</p>
<p class="normal-medium-text">
<span
class="normal-large-p-title-text pink-text text-darken-3"
>
Worked with the Back End architect </span
><br />
• on integration points between FE and BE REST API calls <br />
</p>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1 casestudy-cards">
<h4
class="normal-extra-large-text pink-text text-darken-3"
>
Challenges
</h4>
<p class="normal-medium-text">
Following were some of the key challenges
encountered:<br />
• This was a three day project. The FE were dependent on BE for all the end points. <br />
• The type of data avaialble to the FE for further manipulation had to be designed and agreed upfront.
</p>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1 casestudy-cards">
<h4 class="left-align pink-text text-darken-3">
Contributions Chart from Github
</h4>
<img
src="/img/contributions/contr-justhelp.png"
alt="Github contributions for JustHelp Project"
class="responsive-img"
/>
</div>
<div class="col s12 l10 offset-l1 casestudy-cards">
<br />
<h4 class="left-align pink-text text-darken-3">
Learnings
</h4>
<p class="normal-medium-text">
• This was a three day project. For the smooth functioning of the project prioritized the tasks so that FE's work was not stagnant because of BE unavailability<br />
• Created a good UX design for the FE developers to work on. <br>
• Managed persistence of data using localstorage.
</p>
</div>
</div>
</div>
</div>
<!-- MODAL VIEW FULL CASE STUDY - JUST HELP - END -->
<a
href="https://random-acts-generator.netlify.com/"
target="blank"
class="tooltipped normal-link-text pink-text text-darken-3"
data-tooltip="Website link"
data-position="top"
>
Website
</a>
<a
href="https://github.com/random-acts-generator/RAG-FE"
target="blank"
class="tooltipped normal-link-text pink-text text-darken-3"
data-tooltip="Github link"
data-position="top"
>
Github
</a>
</div>
</div>
</div>
<!-- JUST HELP CARD - END -->
<!-- HOW'S THE WATER CARD - START -->
<div class="col s12 m6 l5 offset-l2">
<div class="card hoverable">
<div class="card-image">
<img src="/img/howsthewater.png" alt="just help project" />
<a
href="#htw-modal"
class="tooltipped halfway-fab btn-floating gradient-pink pulse modal-trigger"
data-tooltip="Feature Demo video"
data-position="top"
>
<i class="fab fa-youtube"></i>
</a>
</div>
<!-- MODAL FOR HOW'S THE WATER - START -->
<div id="htw-modal" class="modal">
<div class="modal-content">
<div class="row">
<div class="col s12 l12">
<a
href="#projects"
class="btn-floating modal-action modal-close right pink darken-3"
onclick="$('#htw-modal').closeModal();"
><i class="fas fa-times"></i
></a>
</div>
</div>
<div class="video-container">
<iframe
width="853"
height="480"
src="//www.youtube.com/embed/vg3uEaHwduc?rel=0"
frameborder="0"
allowfullscreen
></iframe>
</div>
</div>
</div>
<!-- MODAL FOR HOW'S THE WATER - END -->
<div class="card-content">
<span class="card-title pink-text text-darken-3"
>How's the water</span
>
<span class="card-sub-title-text"
>Front-end Architect & Developer</span
>
<br /><br />
<span class="card-sub-title-text pink-text text-darken-3">
Tech Stack:
</span>
<p class="card-normal-text">
• HTML5/CSS3, JS, React, Redux, Figma (UX design)
<br />
• Apollo (GraphQL), Chartjs (Data
Visualization)<br />
• AWS-Amplify, AWS-Cognito, Git/Github
</p>
</div>
<div class="card-action center-align">
<a
href="#casestudy-water"
class="normal-link-text pink-text text-darken-3 modal-trigger"
>View case study</a
>
<!-- MODAL VIEW FULL CASE STUDY - HOWS THE WATER - START -->
<div class="modal" id="casestudy-water">
<div class="modal-content">
<div class="row"></div>
<div class="row">
<div class="col s10 l10">
<h3 class="pink-text text-darken-3">Case study - How's the water!</h3>
</div>
<div class="col s2 l2">
<a
href="#projects"
class="tooltipped btn-floating modal-action modal-close right pink darken-3"
data-tooltip="Close"
onclick="$('#casestudy-sleeptracker').closeModal();"
><i class="fas fa-times"></i
></a>
</div>
</div>
<!-- Responsibilities, challenges, learnings, contributions -->
<div class="row">
<div class="col s12 l10 offset-l1 casestudy-cards">
<h4 class="left-align pink-text text-darken-3">About</h4>
<p class="normal-medium-text">
This app was developed to provide real time surf information for the outdoor enthusiasts in California. This app pulls the real time weather information and tide information and provides all the relevant data necessary for the surfer to make a decision.
</p>
</div>
</div>
<div class="row">
<div
class="col s12 l10 offset-l1 center-align casestudy-cards"
>
<h4 class="left-align pink-text text-darken-3">
Responsibilities
</h4>
<p class="normal-medium-text">
<span
class="normal-large-p-title-text pink-text text-darken-3"
>Developed: </span
><br />
• the UI/UX design for the entire application <br />
• the full authentication flow - Single Sign-On (Google & Facebook) and Custom login <br />
• both FE and BE components for the data visualization feature to show the wind speed and swell height calls.
• the feature - "Favorite a beach".
</p>
<p class="normal-medium-text">
<span
class="normal-large-p-title-text pink-text text-darken-3"
>
Worked with the Back End team </span
><br />
• on integration points between FE GraphQL calls for queires and mutations. <br />
</p>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1 casestudy-cards">
<h4 class="left-align pink-text text-darken-3">
Technical Architecture
</h4>
<img
src="/img/htw_architecture.png"
alt="Github contributions for JustHelp Project"
class="responsive-img"
/>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1 casestudy-cards">
<h4
class="normal-extra-large-text pink-text text-darken-3"
>
Challenges
</h4>
<p class="normal-medium-text">
Following were some of the key challenges
encountered:<br />
• Completely new technology for Authentication - AWS-Cognito<br />
• Completely new tech stack for Backend access - GraphQL. <br>
• Being new to surfing had to research about surf information that would benefit a users of the system. <br>
• All weather and surf information had to be real-time based on the beach chosen.
</p>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1 casestudy-cards">
<h4 class="left-align pink-text text-darken-3">
Contributions Chart from Github
</h4>
<img
src="/img/contributions/contr-howsthewater.png"
alt="Github contributions for JustHelp Project"
class="responsive-img"
/>
</div>
<div class="col s12 l10 offset-l1 casestudy-cards">
<br />
<h4 class="left-align pink-text text-darken-3">
Learnings
</h4>
<p class="normal-medium-text">
• Quickly picked up the technology on AWS-cognito and AWS-amplify. <br />
• Learnt the access of GraphQL using Apollo server from Front End. <br>
• Did a thorough research on the APIs that were providing real time weather and surf information.
</p>
</div>
</div>
</div>
</div>
<!-- MODAL VIEW FULL CASE STUDY - HOWS THE WATER - END -->
<a
href="https://howsthewaters.com/"
target="blank"
class="tooltipped normal-link-text pink-text text-darken-3"
data-tooltip="Website link"
data-position="top"
>
Website
</a>
<a
href="https://github.com/howsthewater/frontend"
target="blank"
class="tooltipped normal-link-text pink-text text-darken-3"
data-tooltip="Github link"
data-position="top"
>
Github
</a>
</div>
</div>
</div>
<!-- HOW'S THE WATER CARD -END -->
</div>
<div class="row"></div>
<!-- SECOND ROW OF CARDS -->
<div class="row">
<!-- SLEEP TRACKER CARD - START -->
<div class="col s12 m6 l5">
<div class="card hoverable">
<div class="card-image">
<img
src="/img/sleeptracker.png"
alt="sleep tracker project"
/>
<a
href="#sleeptracker-modal"
class="tooltipped halfway-fab btn-floating gradient-pink pulse modal-trigger"
data-tooltip="Feature Demo video"
data-position="top"
>
<i class="fab fa-youtube"></i>
</a>
</div>
<!-- MODAL FOR SLEEP TRACKER - START -->
<div id="sleeptracker-modal" class="modal">
<div class="modal-content">
<div class="row">
<div class="col s12 l12">
<a
href="#projects"
class="btn-floating modal-action modal-close right pink darken-3"
onclick="$('#sleeptracker-modal').closeModal();"
><i class="fas fa-times"></i
></a>
</div>
</div>
<div class="video-container">
<iframe
width="853"
height="480"
src="//www.youtube.com/embed/Uhhuaz4VWRM?rel=0"
frameborder="0"
allowfullscreen
></iframe>
</div>
</div>
</div>
<!-- MODAL FOR SLEEP TRACKER - END -->
<div class="card-content">
<span class="card-title pink-text text-darken-3"
>Sleep Tracker</span
>
<span class="card-sub-title-text"
>Back-end Architect & Developer</span
>
<br /><br />
<span class="card-sub-title-text pink-text text-darken-3">
Tech Stack:
</span>
<p class="card-normal-text">
• Nodejs, Express, Postman<br />
• Knex, SQLite, Postgres <br />
• Heroku (hosting), Git/Github
</p>
</div>
<div class="card-action center-align">
<a
href="#casestudy-sleeptracker"
class="normal-link-text pink-text text-darken-3 modal-trigger"
>View case study</a
>
<!-- MODAL VIEW FULL CASE STUDY - SLEEP TRACKER- START -->
<div class="modal" id="casestudy-sleeptracker">
<div class="modal-content">
<div class="row"></div>
<div class="row">
<div class="col s10 l10">
<h3 class="pink-text text-darken-3">Case study - Sleep Tracker</h3>
</div>
<div class="col s2 l2">
<a
href="#projects"
class="tooltipped btn-floating modal-action modal-close right pink darken-3"
data-tooltip="Close"
onclick="$('#casestudy-sleeptracker').closeModal();"
><i class="fas fa-times"></i
></a>
</div>
</div>
<!-- Responsibilities, challenges, learnings, contributions -->
<div class="row">
<div class="col s12 l10 offset-l1 casestudy-cards">
<h4 class="left-align pink-text text-darken-3">About</h4>
<p class="normal-medium-text">
This app could be used by anyone to track their sleep routine. The app generates a visual analysis of the sleep pattern. There is a high level recommendation provided based on the sleep pattern recorded. This was a three member team with 3 days to turn around the application.
</p>
</div>
</div>
<div class="row">
<div
class="col s12 l10 offset-l1 center-align casestudy-cards"
>
<h4 class="left-align pink-text text-darken-3">
Responsibilities
</h4>
<p class="normal-medium-text">
<span
class="normal-large-p-title-text pink-text text-darken-3"
>Designed and developed: </span
><br />
• the backend for the in Nodejs/Express <br />
• the database design to be deployed in SQLite3 for development and Postgres for production <br />
• all the end points that would be required by the FE and returning ample data to avoid mulitiple API calls.
</p>
<p class="normal-medium-text">
<span
class="normal-large-p-title-text pink-text text-darken-3"
>
Worked with the Front End architect </span
><br />
• on integration points between FE REST API calls <br />
</p>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1 casestudy-cards">
<h4
class="normal-extra-large-text pink-text text-darken-3"
>
Challenges
</h4>
<p class="normal-medium-text">
Following were some of the key challenges
encountered:<br />
• This was a three day project. The FE were dependent on BE for all the end points. BE had to developed from scratch<br />
• The type of data avaialble to the FE for further manipulation had to be designed and agreed upfront. <br>
• The BE had to be flexible to accomodate any of the design changes from the FE. Especially, for Data visualization component.
</p>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1 casestudy-cards">
<h4 class="left-align pink-text text-darken-3">
Contributions Chart from Github
</h4>
<img
src="/img/contributions/contr-sleeptracker.png"
alt="Github contributions for JustHelp Project"
class="responsive-img"
/>
</div>
<div class="col s12 l10 offset-l1 casestudy-cards">
<br />
<h4 class="left-align pink-text text-darken-3">
Learnings
</h4>
<p class="normal-medium-text">
• This was a three day project. For the smooth functioning of the project prioritized the tasks so that FE's work was not stagnant because of BE unavailability<br />
• Provided a fool proof design to FE to work with and developed the BE as per design so as to avoid any integration issues.
• <a href="https://github.com/bw-sleep-tracker/ST-Back-End" target="blank">Documentation for Sleep Tracker BE</a> Provided a complete documentation of all the end-points for the Backend developed.
</p>
</div>
</div>
</div>
</div>
<!-- MODAL VIEW FULL CASE STUDY - SLEEP TRACKER - END -->
<a
href="https://sleeptracker-lambda.netlify.com/"
class="tooltipped normal-link-text pink-text text-darken-3"
data-tooltip="Website link"
data-position="top"
>
Website
</a>
<a
href="https://github.com/bw-sleep-tracker/ST-Back-End"
class="tooltipped normal-link-text pink-text text-darken-3"
data-tooltip="Github link"
data-position="top"
>
Github
</a>
</div>
</div>
</div>
<!-- SLEEP TRACKER CARD -END -->
<!-- LAMBDA PRODUCT Q CARD -START -->
<div class="col s12 m6 l5 offset-l2">
<div class="card hoverable">
<div class="card-image">
<img src="/img/productq.png" alt="Lambda ProductQ project" />
<a
href="#productq-modal"
class="tooltipped halfway-fab btn-floating gradient-pink pulse modal-trigger"
data-tooltip="Feature Demo video"
data-position="top"
>
<i class="fab fa-youtube"></i>
</a>
</div>
<!-- MODAL FOR LAMBDA PRODUCTQ - START -->
<div id="productq-modal" class="modal">
<div class="modal-content">
<div class="row">
<div class="col s12 l12">
<a
href="#projects"
class="btn-floating modal-action modal-close right pink darken-3"
onclick="$('#productq-modal').closeModal();"
><i class="fas fa-times"></i
></a>
</div>
</div>
<div class="video-container">
<iframe
width="853"
height="480"
src="//www.youtube.com/embed/CbBdcQ_vmm8?rel=0"
frameborder="0"
allowfullscreen
></iframe>
</div>
</div>
</div>
<!-- MODAL FOR LAMBDA PRODUCTQ - END -->
<div class="card-content">
<span class="card-title pink-text text-darken-3"
>Lambda - ProductQ</span
>
<span class="card-sub-title-text">Front-end Developer</span>
<br /><br />
<span class="card-sub-title-text pink-text text-darken-3">
Tech Stack:
</span>
<p class="card-normal-text">
• HTML5/CSS3, JS<br />
• Netlify <br />
• Git/GitHub
</p>
</div>
<div class="card-action center-align">
<a
href="#casestudy-productq"
class="normal-link-text pink-text text-darken-3 modal-trigger"
>View case study</a
>
<!-- MODAL VIEW FULL CASE STUDY - LAMBDA PRODUCT Q - START -->
<div class="modal" id="casestudy-productq">
<div class="modal-content">
<div class="row"></div>
<div class="row">
<div class="col s10 l10">
<h3 class="pink-text text-darken-3">Case study - Lambda ProductQ</h3>
</div>
<div class="col s2 l2">
<a
href="#projects"
class="tooltipped btn-floating modal-action modal-close right pink darken-3"
data-tooltip="Close"
onclick="$('#casestudy_productq').closeModal();"
><i class="fas fa-times"></i
></a>
</div>
</div>
<!-- Responsibilities, challenges, learnings, contributions -->
<div class="row">
<div class="col s12 l10 offset-l1 casestudy-cards">
<h4 class="left-align pink-text text-darken-3">About</h4>
<p class="normal-medium-text">
This app was built for Lambda School to track the projects that were submitted for build weeks. This was a four member team with 3 days to turn around the application.
</p>
</div>
</div>
<div class="row">
<div
class="col s12 l10 offset-l1 center-align casestudy-cards"
>
<h4 class="left-align pink-text text-darken-3">
Responsibilities
</h4>
<p class="normal-medium-text">
<span
class="normal-large-p-title-text pink-text text-darken-3"
>Designed and developed: </span
><br />
• a marketing page in keeping with
Lambda's design guidelines. <br />
• an 'About' page displaying the
team information. <br />
</p>
<p class="normal-medium-text">
<span
class="normal-large-p-title-text pink-text text-darken-3"
>
Worked with the Front End architect </span
><br />
• on integration points with the
actual application. <br />
</p>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1 casestudy-cards">
<h4
class="normal-extra-large-text pink-text text-darken-3"
>
Challenges
</h4>
<p class="normal-medium-text">
Following were some of the key challenges
encountered:<br />
• There was no formal design guide
to work with. The design guide had to be derived
from the existing live website.<br />
• An unannounced brand-refresh was
done overnight before the date of delivery.
</p>
</div>
</div>
<div class="row">
<div class="col s12 l10 offset-l1 casestudy-cards">
<h4 class="left-align pink-text text-darken-3">
Contributions Chart from Github
</h4>
<img
src="/img/contributions/contr-productq.png"
alt="Github contributions for JustHelp Project"
class="responsive-img"
/>
</div>
<div class="col s12 l10 offset-l1 casestudy-cards">
<br />
<h4 class="left-align pink-text text-darken-3">
Learnings
</h4>
<p class="normal-medium-text">
• Developing as reusuable
components, helps addition or deletion of
information easy. Example, The team member card was
developed as a reusable component making it easy to
add a team member. <br><br>• Developing a
structured CSS helped update for the brand-refresh
very quickly and effectively.
</p>
</div>
</div>
</div>
</div>
<!-- MODAL VIEW FULL CASE STUDY - LAMBDA PRODUCT Q - END -->
<a
href="https://lambdaprodq.netlify.com/"
class="tooltipped normal-link-text pink-text text-darken-3"
data-tooltip="Website link"
data-position="top"
>
Website
</a>
<a
href="https://github.com/build-415-productqueue/landingpage"
class="tooltipped normal-link-text pink-text text-darken-3"
data-tooltip="Github link"
data-position="top"
>
Github
</a>
</div>
</div>
</div>
<!-- LAMBDA PRODUCT Q CARD - END -->
</div>
<div class="gutter"></div>
</section>
<!-- DOWNLOAD RESUME SECTION -->
<!-- SPECIALITY SECTION START -->
<section class="speciality-section">
<br /><br />
<div class="container">
<div class="row container">
<div class="col s12 l3 offset-l2 normal-text left-align">
<h4 class="left-align pink-text text-darken-3">
<span class="normal-large-text"> My</span>
<span class="text-underline">Skill set</span>
</h4>
<br />
<p class="left-align">
Front-End Development
</p>
<p class="left-align">
Back-End Development
</p>
<p class="left-align">
UX/UI Design
</p>
<p class="left-align">Requirements Gathering</p>
<p class="left-align">Project Management</p>
<p class="left-align">Agile Methodologies</p>
</div>
<div class="col s12 l4 offset-l2 normal-text">
<h4 class="left-align pink-text text-darken-3">
<span class="normal-large-text"> My</span>
<span class="text-underline">Toolkit</span>
</h4>
<br />
<p class="left-align">
HTML5/CSS3
</p>
<p class="left-align">
React/Redux
</p>
<p class="left-align">
JS/NodeJS/Express
</p>
<p class="left-align">
Python
</p>
<!-- <p class="left-align">
PHP/Larvel<sup class="ast-highlight">∗</sup>
</p> -->
<p class="left-align">
SQLite, Postgres
</p>
<p class="left-align">
NoSQL, MongoDB
</p>
<p class="left-align">
AWS-Amplify, AWS-Cognito
</p>
<p class="left-align">
GraphQL, RESTAPIs, Postman
</p>
<p class="left-align">
Figma, Whimsical
</p>
<p class="left-align">
Git, Github
</p>
</div>
</div>
<!-- <div class="row center-align">
<span class="normal-text"
><sup class="ast-highlight">∗</sup>Current
Favorites</span
>
</div> -->
</div>
</section>
</main>
<!-- SPECIALITY SECTION END -->
<!-- FOOTER -->
<footer class="page-footer grey darken-3">
<div class="footer-content valign-wrapper">
<div class="col s12 l12 normal-large-text center-align">
<span class="normal-extra-large-text">Want to learn more?</span>
<br />
Download my
<a
href="/assets/gayathri_ram.pdf"
download="Gayathri_Ram_FSE"
class="resume"