-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
897 lines (812 loc) · 43.1 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
<!DOCTYPE html>
<html>
<head>
<link href="./output.css" rel="stylesheet" />
<script>
document.addEventListener('DOMContentLoaded', (event) => {
const dialog = document.querySelector("dialog");
const showButtons = document.getElementsByClassName("open-btn");
const closeButtons = document.getElementsByClassName("close-btn");
if (dialog) {
Array.from(showButtons).forEach(button => {
button.addEventListener("click", () => {
dialog.showModal();
});
});
Array.from(closeButtons).forEach(button => {
button.addEventListener("click", () => {
dialog.close();
});
});
} else {
console.error("Dialog element was not found.");
}
});
</script>
</head>
<body class="px-20 py-10 lg:px-36">
<div class="flex justify-center">
<h1
class="playfair-display-bold text-center text-yellow-200 w-fit rounded-full px-10 py-5 text-8xl lg:text-6xl drop-shadow-solid "
>
Personal Mentorship
</h1>
</div>
<div class="flex flex-col lg:flex-row mt-10 justify-between gap-10">
<div class="w-full lg:w-1/4">
<img
src="./images/avatar.jpg"
class="rounded-full m-auto w-64 drop-shadow-solid border border-yellow-900"
/>
<div
class="bg-sky-200 playfair-display-bold text-center text-6xl lg:text-3xl px-5 py-2 mt-6 text-yellow-950 drop-shadow-solid border rounded-full border-yellow-900"
>
Urvashi
</div>
<div
class="bg-yellow-200 px-8 py-5 mt-6 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<h4 class="text-6xl lg:text-2xl playfair-display-bold mb-5 lg:mb-3">
Social Links
</h4>
<ul>
<li>
<a
target="_blank"
href="https://www.linkedin.com/in/ihsavru"
class="text-yellow-950 hover:text-sky-600 flex gap-5 mt-2 lg:gap-2 text-4xl lg:text-sm"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
class="w-10 lg:w-5"
>
<path
d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"
/>
</svg> LinkedIn
</a>
</li>
<li>
<a
target="_blank"
href="https://github.com/ihsavru"
class="text-yellow-950 hover:text-sky-600 flex gap-5 mt-2 lg:gap-2 text-4xl lg:text-sm"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 496 512"
class="w-10 lg:w-5"
>
<path
d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3 .3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5 .3-6.2 2.3zm44.2-1.7c-2.9 .7-4.9 2.6-4.6 4.9 .3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3 .7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3 .3 2.9 2.3 3.9 1.6 1 3.6 .7 4.3-.7 .7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3 .7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3 .7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"
/>
</svg> GitHub
</a>
</li>
<li>
<a
target="_blank"
href="https://twitter.com/ihsavruu"
class="text-yellow-950 hover:text-sky-600 flex gap-5 mt-2 lg:gap-2 text-4xl lg:text-sm"
>
<svg
class="w-10 lg:w-5"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
>
<path
d="M459.4 151.7c.3 4.5 .3 9.1 .3 13.6 0 138.7-105.6 298.6-298.6 298.6-59.5 0-114.7-17.2-161.1-47.1 8.4 1 16.6 1.3 25.3 1.3 49.1 0 94.2-16.6 130.3-44.8-46.1-1-84.8-31.2-98.1-72.8 6.5 1 13 1.6 19.8 1.6 9.4 0 18.8-1.3 27.6-3.6-48.1-9.7-84.1-52-84.1-103v-1.3c14 7.8 30.2 12.7 47.4 13.3-28.3-18.8-46.8-51-46.8-87.4 0-19.5 5.2-37.4 14.3-53 51.7 63.7 129.3 105.3 216.4 109.8-1.6-7.8-2.6-15.9-2.6-24 0-57.8 46.8-104.9 104.9-104.9 30.2 0 57.5 12.7 76.7 33.1 23.7-4.5 46.5-13.3 66.6-25.3-7.8 24.4-24.4 44.8-46.1 57.8 21.1-2.3 41.6-8.1 60.4-16.2-14.3 20.8-32.2 39.3-52.6 54.3z"
/>
</svg> Twitter
</a>
</li>
<li>
<a
target="_blank"
href="https://www.instagram.com/urvashiv2"
class="text-yellow-950 hover:text-sky-600 flex gap-5 mt-2 lg:gap-2 text-4xl lg:text-sm"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
class="w-10 lg:w-5"
>
<path
d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"
/>
</svg> Instagram
</a>
</li>
</ul>
<dialog
class="bg-sky-200 w-1/2 hind-siliguri-regular text-center fixed top-1/2 -translate-y-1/2 text-3xl lg:text-xl px-5 py-2 mt-6 text-yellow-950 drop-shadow-solid border rounded-lg align-center border-yellow-900"
>
<div class="flex flex-col p-8">
<a
class="p-3 mb-5 w-full text-6xl lg:text-xl rounded-full border border-black"
href="https://rzp.io/l/TIMezl6"
>
Razorpay
</a>
OR
<a
href="https://buy.stripe.com/cN27uNbIe1o91y028a"
class="p-3 mt-5 w-full text-6xl lg:text-xl rounded-full border border-black"
>
Stripe
</a>
<button
class="close-btn text-sky-200 text-6xl mt-10 playfair-display-regular lg:text-xl hind-siliguri-bold rounded-full inline-block bg-black px-16 py-10 lg:px-6 lg:py-3"
autofocus
>
Close
</button>
</div>
</dialog>
<button
href="https://rzp.io/l/TIMezl6"
class="open-btn text-sky-200 inline-block playfair-display-regular lg:hidden text-5xl lg:text-sm hind-siliguri-bold rounded-full mt-5 bg-black px-16 py-12 lg:px-8 lg:py-5"
>
Buy Monthly Personal Mentorship
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-20 lg:w-8 inline"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M17.25 8.25 21 12m0 0-3.75 3.75M21 12H3"
/>
</svg>
</button>
<h6
class="block lg:hidden text-xl lg:text-xs ml-5 hind-siliguri-bold"
>
*Only 3 spots left
</h6>
</div>
<div
id="technologies"
class="bg-yellow-200 px-8 py-5 mt-6 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<h4 class="text-6xl lg:text-2xl playfair-display-bold mb-5 lg:mb-3">
Technologies
</h4>
<div class="flex flex-wrap gap-3 lg:gap-1">
<span
class="text-3xl lg:text-xs border rounded-full border-yellow-950 px-3 py-1 hind-siliguri-light"
>
HTML
</span>
<span
class="text-3xl lg:text-xs border rounded-full border-yellow-950 px-3 py-1 hind-siliguri-light"
>
CSS
</span>
<span
class="text-3xl lg:text-xs border rounded-full border-yellow-950 px-3 py-1 hind-siliguri-light"
>
JavaScript
</span>
<span
class="text-3xl lg:text-xs border rounded-full border-yellow-950 px-3 py-1 hind-siliguri-light"
>
React.js
</span>
<span
class="text-3xl lg:text-xs border rounded-full border-yellow-950 px-3 py-1 hind-siliguri-light"
>
Git
</span>
<span
class="text-3xl lg:text-xs border rounded-full border-yellow-950 px-3 py-1 hind-siliguri-light"
>
TypeScript
</span>
<span
class="text-3xl lg:text-xs border rounded-full border-yellow-950 px-3 py-1 hind-siliguri-light"
>
Gatsby
</span>
<span
class="text-3xl lg:text-xs border rounded-full border-yellow-950 px-3 py-1 hind-siliguri-light"
>
Ruby on Rails
</span>
<span
class="text-3xl lg:text-xs border rounded-full border-yellow-950 px-3 py-1 hind-siliguri-light"
>
Go
</span>
<span
class="text-3xl lg:text-xs border rounded-full border-yellow-950 px-3 py-1 hind-siliguri-light"
>
Python
</span>
</div>
</div>
<div
class="bg-yellow-200 p-8 mt-6 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<h4 class="text-6xl lg:text-2xl playfair-display-bold mb-5 lg:mb-3">
Work Experience
</h4>
<div>
<h6 class="text-4xl lg:text-lg hind-siliguri-regular">
Cabal (Remote)
</h6>
<span class="text-3xl lg:text-sm hind-siliguri-light mb-3">
Software Engineer
</span>
</div>
<div class="h-10 border-l-2 ml-2 border-yellow-400"></div>
<div>
<h6 class="text-4xl lg:text-lg hind-siliguri-regular">
Skiller Whale (Remote)
</h6>
<span class="text-3xl lg:text-sm hind-siliguri-light mb-3">
Software Engineer (Curriculum)
</span>
</div>
<div class="h-10 border-l-2 ml-2 border-yellow-400"></div>
<div>
<h6 class="text-4xl lg:text-lg hind-siliguri-regular">
HackerRank
</h6>
<span class="text-3xl lg:text-sm hind-siliguri-light mb-3">
Software Engineer
</span>
</div>
<div class="h-10 border-l-2 ml-2 border-yellow-400"></div>
<div>
<h6 class="text-4xl lg:text-lg hind-siliguri-regular">
Processing Foundation (Google Summer Of Code)
</h6>
<span class="text-3xl lg:text-sm hind-siliguri-light mb-3">
Open Source Contributor
</span>
</div>
<div class="h-10 border-l-2 ml-2 border-yellow-400"></div>
<div>
<h6 class="text-4xl lg:text-lg hind-siliguri-regular">
Wikimedia Foundation (Outreachy)
</h6>
<span class="text-3xl lg:text-sm hind-siliguri-light mb-3">
Open Source Contributor
</span>
</div>
</div>
</div>
<div class="w-full lg:w-3/4">
<div
class="text-3xl lg:text-sm bg-yellow-200 p-8 mt-6 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<h4 class="text-6xl lg:text-2xl playfair-display-bold mb-5 lg:mb-3">
About Me
</h4>
<p class="hind-siliguri-light">
Hello, I am Urvashi. I like creating things. Currently I'm creating:
content on The Code Dose, coding projects, cookies in my kitchen,
clay keycaps for my keyboard.
</p>
<p class="hind-siliguri-light">
I'm going to be your mentor on this journey towards career as well
as personal growth. I've previously mentored in programs like
<b>Google Code-in</b> and <b>Outreachy</b>.
</p>
<details>
<summary class="hind-siliguri-bold">Read more</summary>
<p class="hind-siliguri-light">
My approach to mentorship is based on understanding your unique
strengths, challenges, and goals. As your mentor, I am here to
listen, inspire, and keep you accountable.
</p>
<p class="hind-siliguri-light">
When it comes to achieving your goals, I'm all about the long
game. Let's ditch the quick fixes and shortcuts and focus on what
really matters: building habits and a mindset that stand the test
of time. So let's get to work on creating a future filled with
achievements you can be proud of!
</p>
</details>
</div>
<div
class="bg-yellow-200 p-8 mt-6 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<h4 class="text-6xl lg:text-2xl playfair-display-bold mb-5 lg:mb-3">
What I can help you with:
</h4>
<ul
class="text-3xl lg:text-sm hind-siliguri-light flex flex-col gap-3 lg:gap-1"
>
<li class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
class="w-8 lg:w-3"
>
<path
d="M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z"
/></svg
>I can help you with interview preparation.
</li>
<li class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
class="w-8 lg:w-3"
>
<path
d="M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z"
/></svg
>I can help you with participating in open source programs like Google Summer of Code and Outreachy.
</li>
<li class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
class="w-8 lg:w-3"
>
<path
d="M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z"
/></svg
>I can help you with mock interviews.
</li>
<li class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
class="w-8 lg:w-3"
>
<path
d="M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z"
/></svg
>I can help you create study plans to achieve your goals.
</li>
<li class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
class="w-8 lg:w-3"
>
<path
d="M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z"
/></svg
>I can help you with your web development doubts.
</li>
<li class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
class="w-8 lg:w-3"
>
<path
d="M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z"
/></svg
>I can help you with remote job search.
</li>
</ul>
<h4 class="text-6xl lg:text-2xl playfair-display-bold my-5 lg:my-3">
Monthly mentorship includes:
</h4>
<ul
class="hind-siliguri-light text-3xl lg:text-sm flex flex-col gap-3 lg:gap-1"
>
<li class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 576 512"
class="w-8 lg:w-4"
>
<path
d="M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM559.1 99.8c10.4 5.6 16.9 16.4 16.9 28.2V384c0 11.8-6.5 22.6-16.9 28.2s-23 5-32.9-1.6l-96-64L416 337.1V320 192 174.9l14.2-9.5 96-64c9.8-6.5 22.4-7.2 32.9-1.6z"
/></svg
>1 session/week (1:1 Sessions)
</li>
<li class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 640 512"
class="w-8 lg:w-4"
>
<path
d="M524.5 69.8a1.5 1.5 0 0 0 -.8-.7A485.1 485.1 0 0 0 404.1 32a1.8 1.8 0 0 0 -1.9 .9 337.5 337.5 0 0 0 -14.9 30.6 447.8 447.8 0 0 0 -134.4 0 309.5 309.5 0 0 0 -15.1-30.6 1.9 1.9 0 0 0 -1.9-.9A483.7 483.7 0 0 0 116.1 69.1a1.7 1.7 0 0 0 -.8 .7C39.1 183.7 18.2 294.7 28.4 404.4a2 2 0 0 0 .8 1.4A487.7 487.7 0 0 0 176 479.9a1.9 1.9 0 0 0 2.1-.7A348.2 348.2 0 0 0 208.1 430.4a1.9 1.9 0 0 0 -1-2.6 321.2 321.2 0 0 1 -45.9-21.9 1.9 1.9 0 0 1 -.2-3.1c3.1-2.3 6.2-4.7 9.1-7.1a1.8 1.8 0 0 1 1.9-.3c96.2 43.9 200.4 43.9 295.5 0a1.8 1.8 0 0 1 1.9 .2c2.9 2.4 6 4.9 9.1 7.2a1.9 1.9 0 0 1 -.2 3.1 301.4 301.4 0 0 1 -45.9 21.8 1.9 1.9 0 0 0 -1 2.6 391.1 391.1 0 0 0 30 48.8 1.9 1.9 0 0 0 2.1 .7A486 486 0 0 0 610.7 405.7a1.9 1.9 0 0 0 .8-1.4C623.7 277.6 590.9 167.5 524.5 69.8zM222.5 337.6c-29 0-52.8-26.6-52.8-59.2S193.1 219.1 222.5 219.1c29.7 0 53.3 26.8 52.8 59.2C275.3 311 251.9 337.6 222.5 337.6zm195.4 0c-29 0-52.8-26.6-52.8-59.2S388.4 219.1 417.9 219.1c29.7 0 53.3 26.8 52.8 59.2C470.7 311 447.5 337.6 417.9 337.6z"
/></svg
>Unlimited chat support over Discord
</li>
<li class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
class="w-8 lg:w-4"
>
<path
d="M152.1 38.2c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 113C-2.3 103.6-2.3 88.4 7 79s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zm0 160c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 273c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zM224 96c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zm0 160c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zM160 416c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H192c-17.7 0-32-14.3-32-32zM48 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96z"
/></svg
>Daily tasks and check-ins
</li>
<li class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
class="w-8 lg:w-4"
>
<path
d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"
/></svg
>Resume review
</li>
<li class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
class="w-8 lg:w-4"
>
<path
d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"
/></svg
>LinkedIn profile optimisation
</li>
</ul>
<button
class="open-btn text-sky-200 text-5xl playfair-display-regular lg:text-xl hind-siliguri-bold rounded-full inline-block mt-5 bg-black px-16 py-10 lg:px-8 lg:py-5"
>
Buy Monthly Personal Mentorship
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-20 lg:w-8 inline"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M17.25 8.25 21 12m0 0-3.75 3.75M21 12H3"
/>
</svg>
</button>
<h6 class="text-xl lg:text-xs ml-5 hind-siliguri-bold">
*Only 3 spots left
</h6>
</div>
<div
class="bg-sky-200 playfair-display-bold text-center text-6xl lg:text-2xl px-5 py-2 mt-6 text-yellow-950 drop-shadow-solid border rounded-full border-yellow-900"
>
What my mentees are saying:
</div>
<div class="flex flex-col gap-5 mt-6">
<div
class="bg-yellow-200 w-full overflow-y-scroll p-8 lg:p-5 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<div class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-24 lg:w-12"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.963 0a9 9 0 1 0-11.963 0m11.963 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
/>
</svg>
<div class="flex flex-col justify-between">
<h6 class="text-4xl lg:text-lg hind-siliguri-bold">
Amlan Bora
</h6>
<span class="text-3xl lg:text-xs hind-siliguri-light">
Software Developer
</span>
</div>
</div>
<p class="mt-3 hind-siliguri-light text-3xl lg:text-sm">
Had a great session, gave me a clear direction & approach to how to prepare for remote developer opportunities! Also, gave me great recommendations for tools I could use while doing so & things I should do to make myself a better developer & candidate for aspired roles.
</p>
</div>
<div
class="bg-yellow-200 w-full overflow-y-scroll p-8 lg:p-5 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<div class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-24 lg:w-12"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.963 0a9 9 0 1 0-11.963 0m11.963 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
/>
</svg>
<div class="flex flex-col justify-between">
<h6 class="text-4xl lg:text-lg hind-siliguri-bold">
Anjali Mahanty
</h6>
<span class="text-3xl lg:text-xs hind-siliguri-light">
UI/UX Designer
</span>
</div>
</div>
<p class="mt-3 hind-siliguri-light text-3xl lg:text-sm">
Hi Urvashi, Thank you for your help. I have joined the Neo group as a UI/UX designer. With feedback and suggestions that you gave me, I will try to improve my profile again.
Thanks again 🙏
</p>
</div>
<div
class="bg-yellow-200 w-full overflow-y-scroll p-8 lg:p-5 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<div class="flex gap-3 lg:gap-1">
<img
class="w-24 lg:w-12 rounded-full border border-yellow-950"
src="./images/testimonials/vinathi.png"
alt="Testimonial Avatar"
/>
<div class="flex flex-col justify-between">
<h6 class="text-4xl lg:text-lg hind-siliguri-bold">
Vinathi
</h6>
<span class="text-3xl lg:text-xs hind-siliguri-light">
Software Engineer @ Accenture
</span>
</div>
</div>
<p class="mt-3 hind-siliguri-light text-3xl lg:text-sm">
This course has been the journey I've always longed for.
I've been gaining valuable knowledge from Urvashi's well-crafted materials and interactive sessions where I could ask any question without hesitation.
What I appreciate the most is learning by building projects, which I love, and the specific exercises that provide exactly what I need to learn.
From improving my basics to stepping into the world of open source with Urvashi's patient support, and I can't wait to dive into the exciting journey ahead, exploring, creating and learning along the way.
</p>
</div>
<div
class="bg-yellow-200 w-full overflow-y-scroll p-8 lg:p-5 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<div class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-24 lg:w-12"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.963 0a9 9 0 1 0-11.963 0m11.963 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
/>
</svg>
<div class="flex flex-col justify-between">
<h6 class="text-4xl lg:text-lg hind-siliguri-bold">
Shubhra Agarwal
</h6>
<span class="text-3xl lg:text-xs hind-siliguri-light">
Frontend Engineer @ BlueLearn
</span>
</div>
</div>
<p class="mt-3 hind-siliguri-light text-3xl lg:text-sm">
Urvashi's guidance and pointers about my resume, projects and portfolio helped me in landing a great job as a Frontend developer.
</p>
</div>
<div
class="bg-yellow-200 w-full overflow-y-scroll p-8 lg:p-5 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<div class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-24 lg:w-12"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.963 0a9 9 0 1 0-11.963 0m11.963 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
/>
</svg>
<div class="flex flex-col justify-between">
<h6 class="text-4xl lg:text-lg hind-siliguri-bold">
Shivani Mishra
</h6>
<span class="text-3xl lg:text-xs hind-siliguri-light">
Upcoming Data Analyst @TheMathCompany
</span>
</div>
</div>
<p class="mt-3 hind-siliguri-light text-3xl lg:text-sm">
It was one of the best learning experiences I had, at React Developer Program, right from start to end.
At start: Urvashi provided us with some great resources for basic of web dev before the program started.
During the program : Urvashi has divided the section into smaller subsections and layed out the program for each week and month beforehand, giving ample amount of time to each topic. The program is based on application based learning with less theory followed by good amount of practice projects and practical way of finding solutions.
Environment: Over all environment is very friendly with Daily check-ins,motivational messages and project review. The best thing about the program is that the batches are very small which leads to Urvashi giving attention to each and every student. You can contact her anytime and clear your doubts through weekly calls or direct messages.
Outcome:I was able to make websites on my own and did gave me confidence on my skills,
"Overall I am very happy and recommend others to join the React developer program"
</p>
</div>
<div
class="bg-yellow-200 w-full overflow-y-scroll p-8 lg:p-5 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<div class="flex gap-3 lg:gap-1">
<img
class="w-24 lg:w-12 rounded-full border border-yellow-950"
src="./images/testimonials/rohit.png"
alt="Testimonial Avatar"
/>
<div class="flex flex-col justify-between">
<h6 class="text-4xl lg:text-lg hind-siliguri-bold">
Rohit Deshpande
</h6>
<span class="text-3xl lg:text-xs hind-siliguri-light">
4th year student @ PCCOE, Pune
</span>
</div>
</div>
<p class="mt-3 hind-siliguri-light text-3xl lg:text-sm">
The major reason I took this program was not just learning React but the experience that Urvashi has and that has helped me a lot.
The content is crisp and the exercises and projects make you think, but the code reviews you get after is the real deal.
I personally feel quite confident in my abilities, have greater understanding of how things work, also learned a lot about open source, found new interests in technical writing after having completed 2 months of the program.
So you can apply for this program if you're interested in React but also want some guidance, doubt-solving and reviews.
Quite honestly the money is for the experience ,reviews, and doubt-solving because you can learn React freely too.
Also if you're experienced I reckon this might not be for you but for a beginner it definitely is worth it.
</p>
</div>
<div
class="bg-yellow-200 w-full overflow-y-scroll p-8 lg:p-5 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<div class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-24 lg:w-12"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.963 0a9 9 0 1 0-11.963 0m11.963 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
/>
</svg>
<div class="flex flex-col justify-between">
<h6 class="text-4xl lg:text-lg hind-siliguri-bold">
Vishesh Vijayvargiya
</h6>
<span class="text-3xl lg:text-xs hind-siliguri-light">
Student
</span>
</div>
</div>
<p class="mt-3 hind-siliguri-light text-3xl lg:text-sm">
I took Urvashi's course to learn web development since I had interest in it and I do not regret a single bit. I personally am a slow learner, it takes time for me to master the basics but I believe in mastering the basics first. While some students were a little more experienced than me and I went a bit slow, Urvashi was always fair to everyone and supported me throughout my learning journey no matter how much I knew about web dev. I can say this with 100% confidence that everyone should have a mentor like Urvashi in their life.
About the course and it's content, I love how her content is high quality yet not long comprehensive tutorials. It is broken down into bits and every concept is explained in such a simple manner that even a 13 year old can learn how to code with her videos. And it does not end with just videos, she always shares us very informative and important videos/articles to keep us knowledgeable and up-to-date about our field/industry.
She truly fulfilled everything she promised to do in the course description. Whenever I have doubts or I'm stuck, she is just one discord message away and that is honestly the best part about this course. I truly am grateful to have enrolled in this course, but specially to have Urvashi as a mentor. Thanks Urvashi!
</p>
</div>
<div
class="bg-yellow-200 w-full overflow-y-scroll p-8 lg:p-5 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<div class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-24 lg:w-12"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.963 0a9 9 0 1 0-11.963 0m11.963 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
/>
</svg>
<div class="flex flex-col justify-between">
<h6 class="text-4xl lg:text-lg hind-siliguri-bold">
Souvik Mitra
</h6>
<span class="text-3xl lg:text-xs hind-siliguri-light">
Self-taught Web Developer
</span>
</div>
</div>
<p class="mt-3 hind-siliguri-light text-3xl lg:text-sm">
Urvashi has genuinely done a great job with the RDP, explained the concepts thoroughly and supplemented them with proper documentation, challenging exercises and projects. The course really helped me clear React fundamentals, which made it easy for me to build projects.
</p>
</div>
<div
class="bg-yellow-200 w-full overflow-y-scroll p-8 lg:p-5 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<div class="flex gap-3 lg:gap-1">
<img
class="w-24 lg:w-12 rounded-full border border-yellow-950"
src="./images/testimonials/charan.png"
alt="Testimonial Avatar"
/>
<div class="flex flex-col justify-between">
<h6 class="text-4xl lg:text-lg hind-siliguri-bold">
Charan Kamal Singh
</h6>
<span class="text-3xl lg:text-xs hind-siliguri-light">
3rd year student @ Panjab University
</span>
</div>
</div>
<p class="mt-3 hind-siliguri-light text-3xl lg:text-sm">
Enrolling in this course has been very valuable. The personalized attention, her industry expertise, and very insightful exercise design makes the course structure just outstanding. From learning React Development to understanding best practices and receiving code reviews, this course has helped me improve as a developer. I am grateful to have such Urvashi as a mentor in my learning process.
</p>
</div>
<div
class="bg-yellow-200 w-full overflow-y-scroll p-8 lg:p-5 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<div class="flex gap-3 lg:gap-1">
<img
class="w-24 lg:w-12 rounded-full border border-yellow-950"
src="./images/testimonials/devanshu.png"
alt="Testimonial Avatar"
/>
<div class="flex flex-col justify-between">
<h6 class="text-4xl lg:text-lg hind-siliguri-bold">
Devanshu Verma
</h6>
<span class="text-3xl lg:text-xs hind-siliguri-light">
Software Developer @ Parangat Technologies
</span>
</div>
</div>
<p class="mt-3 hind-siliguri-light text-3xl lg:text-sm">
I really liked the way Urvashi arranged the content of the course. It really helped me to improve my coding skills gradually. She is a good mentor. 1:1 sessions were good and group discussions as well. She only says one thing : “Keep practising daily, get your hands dirty in coding.”
</p>
</div>
<div
class="bg-yellow-200 w-full overflow-y-scroll p-8 lg:p-5 text-yellow-950 drop-shadow-solid border rounded-lg border-yellow-900"
>
<div class="flex gap-3 lg:gap-1">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-24 lg:w-12"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.963 0a9 9 0 1 0-11.963 0m11.963 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
/>
</svg>
<div class="flex flex-col justify-between">
<h6 class="text-4xl lg:text-lg hind-siliguri-bold">
Prateek Gaur
</h6>
<span class="text-3xl lg:text-xs hind-siliguri-light">
Software Engineer @ Accenture
</span>
</div>
</div>
<p class="mt-3 hind-siliguri-light text-3xl lg:text-sm">
Hi TheCodeDose,
Thank you so much for the Git and GitHub workshop you conducted previously.
I also shared this valuable knowledge with a senior developer in my company, and she also found it to be a great way to save time and increase efficiency during code merging. I truly appreciate all the help and guidance you provided during the workshop. Thank you once again!
</p>
</div>
</div>
</div>
</div>
</body>
</html>