-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1053 lines (868 loc) · 42.2 KB
/
index.html
File metadata and controls
1053 lines (868 loc) · 42.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport" />
<!-- Website Title -->
<title> Suraj Dalvi - Developer </title>
<meta property="og:title" content="Suraj Dalvi | Developer">
<meta property="og:locale" content="en_US" />
<link rel="canonical" href="//" />
<meta property="og:url" content="//" />
<meta name="description" content=" Computer Science Engineering (CSE) Student pursuing B.Tech from PCCOE Pune Campus">
<!-- Website logo -->
<link rel="icon" type="image/png" href="/assets/img/weblogo.png" />
<meta name="theme-color" content="#5540af" />
<!-- <meta property="og:site_name" content="Atom Template" /> -->
<meta property="og:image" content="//assets/img/social.jpg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@tailwindmade" />
<link crossorigin="crossorigin" href="https://fonts.gstatic.com" rel="preconnect" />
<link as="style"
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Raleway:wght@400;500;600;700&display=swap"
rel="preload" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Raleway:wght@400;500;600;700&display=swap"
rel="stylesheet" />
<link href="https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css" rel="stylesheet" />
<link crossorigin="anonymous" href="/assets/styles/main.min.css" media="screen" rel="stylesheet" />
<script defer src="https://unpkg.com/@alpine-collective/toolkit@1.0.0/dist/cdn.min.js"></script>
<script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>
<!-- Count API Script -->
<script async
src="https://api.countapi.xyz/hit/suraj.com/8d43875a-45cf-4209-b581-cefe61aa7e43visits?callback=WebsiteVisits"></script>
<!-- CSS For Profile-Image Popup -->
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
/* The Modal (background) */
.modal {
display: none;
/* Hidden by default */
position: fixed;
/* Stay in place */
z-index: 1;
/* Sit on top */
padding-top: 100px;
/* Location of the box */
left: 0;
top: 0;
width: 100%;
/* Full width */
height: 100%;
/* Full height */
overflow: auto;
/* Enable scroll if needed */
background-color: rgb(0, 0, 0);
/* Fallback color */
background-color: rgba(0, 0, 0, 0.9);
/* Black w/ opacity */
}
/* Modal Content (image) */
.modal-content {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
}
/* Caption of Modal Image */
#caption {
margin: auto;
display: block;
width: 80%;
font-family: cursive;
max-width: 700px;
text-align: center;
color: rgb(247, 241, 241);
font-weight: bold;
font-size: 20px;
padding: 10px 0;
height: 150px;
}
/* Add Animation */
.modal-content,
#caption {
-webkit-animation-name: zoom;
-webkit-animation-duration: 0.6s;
animation-name: zoom;
animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
from {
-webkit-transform: scale(0)
}
to {
-webkit-transform: scale(1)
}
}
@keyframes zoom {
from {
transform: scale(0)
}
to {
transform: scale(1)
}
}
/* The Close Button */
.close {
position: absolute;
top: 80px;
right: 280px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: yellow;
text-decoration: none;
cursor: pointer;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
.modal-content {
width: 100%;
}
.close {
position: absolute;
top: 90px;
right: 10px;
color: black;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: yellow;
text-decoration: none;
cursor: pointer;
}
}
</style>
</head>
<body :class="{ 'overflow-hidden max-h-screen': mobileMenu }" class="relative" x-data="{ mobileMenu: false }">
<div id="main" class="relative">
<div x-data="{
triggerNavItem(id) {
$scroll(id)
},
triggerMobileNavItem(id) {
mobileMenu = false;
this.triggerNavItem(id)
}
}">
<div class="w-full z-50 top-0 py-3 sm:py-5 absolute
" id="navbar">
<div class="container flex items-center justify-between">
<div>
<a href="/">
<img src="/assets/img/atomlogo.png"
class="w-10 lg:w-20 bg-transparent mb-3 pb-3 inline-block relative hover:scale-105 cursor-pointer "
alt="logo" />
</a>
<a>
<h2 @click="triggerNavItem('#about')"
class="text-white relative inline-block text-2xl font-header mr-10 font-bold cursor-pointer ">
Suraj Dalvi
</h2>
</a>
</div>
<div class="hidden lg:block">
<ul class="flex items-center">
<li class="group pl-6">
<span @click="triggerNavItem('#about')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">About</span>
<span class="block h-0.5 w-full bg-transparent group-hover:bg-yellow"></span>
</li>
<li class="group pl-6">
<span @click="triggerNavItem('#skills')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Skills</span>
<span class="block h-0.5 w-full bg-transparent group-hover:bg-yellow"></span>
</li>
<li class="group pl-6">
<span @click="triggerNavItem('#projects')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Projects</span>
<span class="block h-0.5 w-full bg-transparent group-hover:bg-yellow"></span>
</li>
<li class="group pl-6">
<span @click="triggerNavItem('#education')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Education</span>
<span class="block h-0.5 w-full bg-transparent group-hover:bg-yellow"></span>
</li>
<li class="group pl-6">
<span @click="triggerNavItem('#statistics')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Statistics</span>
<span class="block h-0.5 w-full bg-transparent group-hover:bg-yellow"></span>
</li>
<li class="group pl-6">
<span @click="triggerNavItem('#blog')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Blog</span>
<span class="block h-0.5 w-full bg-transparent group-hover:bg-yellow"></span>
</li>
<li class="group pl-6">
<span @click="triggerNavItem('#contact')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Contact</span>
<span class="block h-0.5 w-full bg-transparent group-hover:bg-yellow"></span>
</li>
</ul>
</div>
<div class="block lg:hidden">
<button @click="mobileMenu = true">
<i class="bx bx-menu text-4xl text-white"></i>
</button>
</div>
</div>
</div>
s
<div
class="pointer-events-none fixed inset-0 z-70 min-h-screen bg-black bg-opacity-70 opacity-0 transition-opacity lg:hidden"
:class="{ 'opacity-100 pointer-events-auto': mobileMenu }">
<div class="absolute right-0 min-h-screen w-2/3 bg-primary py-4 px-8 shadow md:w-1/3">
<button class="absolute top-0 right-0 mt-4 mr-4" @click="mobileMenu = false">
<img src="/assets/img/icon-close.svg" class="h-10 w-auto" alt="" />
</button>
<ul class="mt-8 flex flex-col">
<li class="py-2">
<span @click="triggerMobileNavItem('#about')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">About</span>
</li>
<li class="py-2">
<span @click="triggerMobileNavItem('#skills')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Skills</span>
</li>
<li class="py-2">
<span @click="triggerMobileNavItem('#projects')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Projects</span>
</li>
<li class="py-2">
<span @click="triggerMobileNavItem('#education')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Education</span>
</li>
<li class="py-2">
<span @click="triggerMobileNavItem('#statistics')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Statistics</span>
</li>
<li class="py-2">
<span @click="triggerMobileNavItem('#blog')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Blog</span>
</li>
<li class="py-2">
<span @click="triggerMobileNavItem('#contact')"
class="cursor-pointer pt-0.5 font-header font-semibold uppercase text-white">Contact</span>
</li>
</ul>
</div>
</div>
<div>
<div class="relative bg-cover bg-center bg-no-repeat py-8"
style="background-image: url(/assets/img/bg-hero.jpg)">
<div
class="absolute inset-0 z-20 bg-gradient-to-r from-hero-gradient-from to-hero-gradient-to bg-cover bg-center bg-no-repeat">
</div>
<div class="container relative z-30 pt-20 pb-12 sm:pt-56 sm:pb-48 lg:pt-64 lg:pb-48">
<div class="flex flex-col items-center justify-center lg:flex-row">
<div class="rounded-full border-8 border-primary shadow-xl">
<!-- <a href="/assets/img/profile.jpeg">
<img src="/assets/img/profile.jpeg"
class="h-48 rounded-full sm:h-60 hover:scale-105 hover:border-8 hover: border-primary hover:shadow-xl"
alt="author" />
</a> -->
<!-- HTML For Profile-Image Popup -->
<img src="/assets/img/profile.jpeg " id="myImg" alt="Suraj Dalvi"
class="h-48 rounded-full sm:h-60 hover:scale-105 hover:border-8 hover: border-primary hover:shadow-xl">
<!-- The Modal -->
<div id="myModal" class="modal">
<span class="close">×</span>
<img class="modal-content" id="img01">
<div id="caption"></div>
</div>
<!-- Javascript For Profile-Image Popup -->
<script>
// Get the modal
var modal = document.getElementById("myModal");
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById("myImg");
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function () {
modal.style.display = "block";
modalImg.src = this.src;
captionText.innerHTML = this.alt;
}
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function () {
modal.style.display = "none";
}
</script>
</div>
<div class="pt-8 sm:pt-10 lg:pl-8 lg:pt-0">
<h1 class="text-center font-header text-4xl text-white sm:text-left sm:text-5xl md:text-6xl">
Hello I'm Suraj!
</h1>
<div class="flex flex-col justify-center pt-3 sm:flex-row sm:pt-5 lg:justify-start">
<div class="flex items-center justify-center pl-0 sm:justify-start md:pl-1">
<p class="font-body text-lg uppercase text-white">Let's connect</p>
<div class="hidden sm:block">
<i class="bx bx-chevron-right text-3xl text-yellow"></i>
</div>
</div>
<div class="flex items-center justify-center pt-5 pl-2 sm:justify-start sm:pt-0">
<a href="https://github.com/Suraj-Encoding" class="pl-4">
<i class="bx bxl-github text-2xl text-white hover:text-yellow"></i>
</a>
<a href="https://twitter.com/dalvisuraj116" class="pl-4">
<i class="bx bxl-twitter text-2xl text-white hover:text-yellow"></i>
</a>
<a href="https://www.linkedin.com/in/suraj-dalvi-929644247/" class="pl-4">
<i class="bx bxl-linkedin text-2xl text-white hover:text-yellow"></i>
</a>
<a href="https://www.instagram.com/accounts/login/" class="pl-4">
<i class="bx bxl-instagram text-2xl text-white hover:text-yellow"></i>
</a>
</div>
</div>
<a @click="triggerNavItem('#post')">
<div class="buttons text-center md:text-left sm:ml-3 mt-2">
<button
class="bg-yellow font-bold text-black px-4 py-1 my-4 rounded-full hover:bg-primary hover:text-white border-black border-2">
All Blogs
</button>
<!-- Page views -->
<h1
class=" font-bold inline-block text-center ml-2 bg-primary rounded-full hover:bg-grey-20 text-white px-4 py-1 my-4 ">
Page visits - <span id="visits"></span>
</h1>
</div>
</a>
<!-- Javascript for page views -->
<script>
function WebsiteVisits(response) {
document.getElementById('visits').innerText = response.value;
}
</script>
</div>
</div>
</div>
</div>
<div class="bg-grey-50" id="about">
<div class="container flex flex-col items-center py-16 md:py-20 lg:flex-row">
<div class="w-full text-center sm:w-3/4 lg:w-3/5 lg:text-left">
<h2 class="font-header text-4xl font-semibold uppercase text-primary sm:text-5xl lg:text-6xl">
Who am I?
</h2>
<h4 class="pt-6 font-header text-xl font-semibold text-black sm:text-2xl lg:text-3xl">
I'm Suraj Dalvi, a Web Developer & Programmer
</h4>
<div class="pt-6 font-body leading-relaxed text-l text-solid stroke-black ">
<h4 class=" font-header font-bold text-md text-black ">
CODING ENTHUSIAST | FULL STACK WEB DEV
</h4>
<p class=" font-body text-black ">
I'm a second year student pursuing my B.Tech in Computer Science and Engineering (CSE) at PCCOE Pune.
<!-- <h2 class="font-bold inline-block">PCCOE</h2> Pune. -->
I am always ready to have new experiences, meet new people and learn new things. My interests lie in
Front End as well as Back End Web Development, Data Structures & Algorithms and Applied Mathematics.
Also, I like pushing myself and taking up new challenges... <br>
</p>
<p class="font-body font-bold text-lg text-black">
☆ Engineering is my passion, Learning is my attitude and Coding is my tool ☆
</p>
</div>
<div class="flex flex-col justify-center pt-6 sm:flex-row lg:justify-start">
<div class="flex items-center justify-center sm:justify-start">
<p class="font-body text-lg font-semibold uppercase text-grey-20">
Connect with me
</p>
<div class="hidden sm:block">
<i class="bx bx-chevron-right text-2xl text-primary"></i>
</div>
</div>
<div class="flex items-center justify-center pt-5 pl-2 sm:justify-start sm:pt-0">
<a href="https://github.com/Suraj-Encoding" class="pl-4">
<i class="bx bxl-github text-2xl text-primary hover:text-yellow"></i>
</a>
<a href="https://twitter.com/dalvisuraj116" class="pl-4">
<i class="bx bxl-twitter text-2xl text-primary hover:text-yellow"></i>
</a>
<a href="https://www.linkedin.com/in/suraj-dalvi-929644247/" class="pl-4">
<i class="bx bxl-linkedin text-2xl text-primary hover:text-yellow"></i>
</a>
<a href="https://www.instagram.com/accounts/login/" class="pl-4">
<i class="bx bxl-instagram text-2xl text-primary hover:text-yellow"></i>
</a>
<a href="/assets/img/Resume.pdf" class="buttons text-center md:text-left pl-4"
download="Suraj_Resume">
<button
class="bg-primary flex items-center justify-center text-white font-bold font-header border-1 border-black px-4 py-1 mx-3 my-4 rounded-full hover:text-yellow hover:bg-grey-20 ">
Resume
<i class="bx bxs-download relative -right-2 "></i>
</button>
</a>
</div>
</div>
</div>
<div class="w-full pl-0 pt-10 sm:w-3/4 lg:w-2/5 lg:pl-12 lg:pt-0">
<div>
<div class="flex items-end justify-between">
<h4 class="font-body font-semibold uppercase text-black">
HTML & CSS
</h4>
<h3 class="font-body text-3xl font-bold text-primary">85%</h3>
</div>
<div class="mt-2 h-3 w-full rounded-full bg-lila">
<div class="h-3 rounded-full bg-primary" style="width: 85%"></div>
</div>
</div>
<div class="pt-6">
<div class="flex items-end justify-between">
<h4 class="font-body font-semibold uppercase text-black">Java</h4>
<h3 class="font-body text-3xl font-bold text-primary">80%</h3>
</div>
<div class="mt-2 h-3 w-full rounded-full bg-lila">
<div class="h-3 rounded-full bg-primary" style="width: 80%"></div>
</div>
</div>
<div class="pt-6">
<div class="flex items-end justify-between">
<h4 class="font-body font-semibold uppercase text-black">
C
</h4>
<h3 class="font-body text-3xl font-bold text-primary">98%</h3>
</div>
<div class="mt-2 h-3 w-full rounded-full bg-lila">
<div class="h-3 rounded-full bg-primary" style="width: 98%"></div>
</div>
</div>
<div class="pt-6">
<div class="flex items-end justify-between">
<h4 class="font-body font-semibold uppercase text-black">C++</h4>
<h3 class="font-body text-3xl font-bold text-primary">91%</h3>
</div>
<div class="mt-2 h-3 w-full rounded-full bg-lila">
<div class="h-3 rounded-full bg-primary" style="width: 91%"></div>
</div>
</div>
</div>
</div>
</div>
<div class="container py-16 md:py-20" id="skills">
<h2 class="text-center font-header text-4xl font-semibold uppercase text-primary sm:text-5xl lg:text-6xl">
Here's what I'm good at
</h2>
<h3 class="pt-6 text-center font-header text-xl font-medium text-black sm:text-2xl lg:text-3xl">
<!-- These are the services Ioffer -->
</h3>
<div class="grid grid-cols-1 gap-6 pt-10 sm:grid-cols-2 md:gap-10 md:pt-12 lg:grid-cols-3">
<div class="group rounded px-8 py-12 shadow hover:bg-primary">
<div class="mx-auto h-24 w-24 text-center xl:h-28 xl:w-28">
<div class="hidden group-hover:block">
<img src="/assets/img/icon-development-white.svg" alt="development icon" />
</div>
<div class="block group-hover:hidden">
<img src="/assets/img/icon-development-black.svg" alt="development icon" />
</div>
</div>
<div class="text-center">
<h3 class="pt-8 text-lg font-semibold uppercase text-primary group-hover:text-yellow lg:text-xl">
WEB DEVELOPMENT
</h3>
<p class="text-black font-bold pt-4 text-lg group-hover:text-white md:text-base">
I'm a Frontend Web Developer.
</p>
</div>
</div>
<div class="group rounded px-8 py-12 shadow hover:bg-primary">
<div class="mx-auto h-24 w-24 text-center xl:h-28 xl:w-28">
<div class="hidden group-hover:block">
<img src="/assets/img/teacher-white.svg" alt="content marketing icon" />
</div>
<div class="block group-hover:hidden">
<img src="/assets/img/teacher-black.svg" alt="content marketing icon" />
</div>
</div>
<div class="text-center">
<h3 class="pt-8 text-lg font-semibold uppercase text-primary group-hover:text-yellow lg:text-xl">
Teaching
</h3>
<p class="text-black font-bold pt-4 text-lg group-hover:text-white md:text-base">
I have great teaching skills. And I love teaching.
</p>
</div>
</div>
<div class="group rounded px-8 py-12 shadow hover:bg-primary">
<div class="mx-auto h-24 w-24 text-center xl:h-28 xl:w-28">
<div class="hidden group-hover:block">
<img src="/assets/img/icon-graphics-white.svg" alt="Graphic Design icon" />
</div>
<div class="block group-hover:hidden">
<img src="/assets/img/icon-graphics-black.svg" alt="Graphic Design icon" />
</div>
</div>
<div class="text-center">
<h3 class="pt-8 text-lg font-semibold uppercase text-primary group-hover:text-yellow lg:text-xl">
Web Design
</h3>
<p class="text-black font-bold pt-4 text-lg group-hover:text-white md:text-base">
I have a great knowledge of web design also.
</p>
</div>
</div>
</div>
</div>
<div class="container py-16 md:py-20" id="projects">
<h2 class="text-center font-header text-4xl font-semibold uppercase text-primary sm:text-5xl lg:text-6xl">
Check out my Projects
</h2>
<h3 class="pt-6 text-center font-header text-xl font-medium text-black sm:text-2xl lg:text-3xl">
Here's what I have done with the past
</h3>
<div class="mx-auto grid w-full grid-cols-1 gap-6 pt-12 sm:w-3/4 md:gap-10 lg:w-full lg:grid-cols-2">
<a href="https://suraj-library.web.app/" class="mx-auto transform transition-all hover:scale-105 md:mx-0">
<img src="/assets/img/lrdc.jpeg" class="w-full shadow " alt="PCCOE LRDC image" />
</a>
<a @click="triggerNavItem('#navbar')" class="mx-auto transform transition-all hover:scale-105 md:mx-0">
<img src="/assets/img/port.jpeg" class="w-full shadow" alt="portfolio image" />
</a>
<a href="https://musical-hub.web.app/" class="mx-auto transform transition-all hover:scale-105 md:mx-0">
<img src="/assets/img/spotify.jpeg" class="w-full shadow" alt="Spotify image" />
</a>
<a href="https://get-intouch.web.app/" class="mx-auto transform transition-all hover:scale-105 md:mx-0">
<img src="/assets/img/contact.jpeg" class="w-full shadow" alt="Contact Form image" />
</a>
</div>
</div>
</div>
<div class="container py-16 md:py-20" id="education">
<h3 class="text-center font-header text-4xl font-semibold uppercase text-primary sm:text-3xl lg:text-6xl">
My Education
</h3>
<div class="relative mx-auto mt-12 flex w-full flex-col lg:w-2/3">
<span class="left-2/5 absolute inset-y-0 ml-10 hidden w-0.5 bg-grey-40 md:block"></span>
<div class="mt-8 flex flex-col text-center md:flex-row md:text-left">
<div class="md:w-2/5">
<div class="flex justify-center md:justify-start">
</div>
</div>
<div class="md:w-3/5">
<div class="relative flex md:pl-18">
<span
class="absolute left-8 top-1 hidden h-4 w-4 rounded-full border-2 border-grey-20 bg-yellow md:block"></span>
<div class="mt-1 flex">
<i class="bx bxs-right-arrow hidden text-primary md:block"></i>
<div class="md:-mt-1 md:pl-8">
<span class="block font-body font-bold text-grey-40">
Dec 2021 - Present
</span>
<span class="block pt-2 font-header text-xl font-bold uppercase text-primary">
Pimpri Chinchwad College of Engineering, Pune
</span>
<div class="pt-2">
<span class="block font-header prose max-w-none text-xl font-bold text-grey-10 ">
Student <br /> Second Year, CSE
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-8 flex flex-col text-center md:flex-row md:text-left">
<div class="md:w-2/5">
<div class="flex justify-center md:justify-start">
</div>
</div>
<div class="md:w-3/5">
<div class="relative flex md:pl-18">
<span
class="absolute left-8 top-1 hidden h-4 w-4 rounded-full border-2 border-grey-20 bg-yellow md:block"></span>
<div class="mt-1 flex">
<i class="bx bxs-right-arrow hidden text-primary md:block"></i>
<div class="md:-mt-1 md:pl-8">
<span class="block font-body font-bold text-grey-40">
Jun 2020 - Mar 2021
</span>
<span class="block pt-2 font-header text-xl font-bold uppercase text-primary">
Nav-Maharashtra Junior College, Pimpri
</span>
<div class="pt-2">
<span class="block font-header prose max-w-none text-xl font-bold text-grey-10 ">
HSC |
<span class="inline-block ml-2 font-body text-xl text-grey-20 font-extrabold">
91.17%
</span>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-8 flex flex-col text-center md:flex-row md:text-left">
<div class="md:w-2/5">
<div class="flex justify-center md:justify-start">
</div>
</div>
<div class="md:w-3/5">
<div class="relative flex md:pl-18">
<span
class="absolute left-8 top-1 hidden h-4 w-4 rounded-full border-2 border-grey-20 bg-yellow md:block"></span>
<div class="mt-1 flex">
<i class="bx bxs-right-arrow hidden text-primary md:block"></i>
<div class="md:-mt-1 md:pl-8">
<span class="block font-body font-bold text-grey-40">
Jun 2018 - Mar 2019
</span>
<span class="block pt-2 font-header text-xl font-bold uppercase text-primary">
Nav-Maharashtra Vidyalaya, Pimpri
</span>
<div class="pt-2">
<span class="block font-header prose max-w-none text-xl font-bold text-grey-10 ">
SSC |
<span class="inline-block ml-2 font-body text-xl text-grey-20 font-extrabold">
93.20%
</span>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-cover bg-top bg-no-repeat pb-16 md:py-16 lg:py-24"
style="background-image: url(/assets/img/experience-figure.png)" id="statistics">
<div class="container">
<div class="mx-auto w-5/6 bg-white py-16 shadow md:w-11/12 lg:py-20 xl:py-24 2xl:w-full">
<div class="grid grid-cols-2 gap-5 md:gap-8 xl:grid-cols-4 xl:gap-5">
<div class="flex flex-col items-center justify-center text-center md:flex-row md:text-left">
<div>
<img src="/assets/img/icon-project.svg" class="mx-auto h-12 w-auto md:h-20" alt="icon project" />
</div>
<div class="pt-5 md:pl-5 md:pt-0">
<h1 class="font-body text-2xl font-bold text-primary md:text-4xl">
7
</h1>
<h4 class="text-grey-dark font-header text-base font-medium leading-loose md:text-xl">
Finished Projects
</h4>
</div>
</div>
<div class="flex flex-col items-center justify-center text-center md:flex-row md:text-left">
<div>
<img src="/assets/img/icon-award.svg" class="mx-auto h-12 w-auto md:h-20" alt="icon award" />
</div>
<div class="pt-5 md:pl-5 md:pt-0">
<h1 class="font-body text-2xl font-bold text-primary md:text-4xl">
1
</h1>
<h4 class="text-grey-dark font-header text-base font-medium leading-loose md:text-xl">
Awards Won
</h4>
</div>
</div>
<div
class="mt-6 flex flex-col items-center justify-center text-center md:mt-10 md:flex-row md:text-left lg:mt-0">
<div>
<img src="/assets/img/icon-happy.svg" class="mx-auto h-12 w-auto md:h-20" alt="icon happy clients" />
</div>
<div class="pt-5 md:pl-5 md:pt-0">
<h1 class="font-body text-2xl font-bold text-primary md:text-4xl">
2
</h1>
<h4 class="text-grey-dark font-header text-base font-medium leading-loose md:text-xl">
Happy Clients
</h4>
</div>
</div>
<div
class="mt-6 flex flex-col items-center justify-center text-center md:mt-10 md:flex-row md:text-left lg:mt-0">
<div>
<img src="/assets/img/icon-puzzle.svg" class="mx-auto h-12 w-auto md:h-20" alt="icon puzzle" />
</div>
<div class="pt-5 md:pl-5 md:pt-0">
<h1 class="font-body text-2xl font-bold text-primary md:text-4xl">
50
</h1>
<h4 class="text-grey-dark font-header text-base font-medium leading-loose md:text-xl">
Bugs Fixed
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-grey-50" id="blog">
<div class="container py-16 md:py-20">
<h2 class="text-center font-header text-4xl font-semibold uppercase text-primary sm:text-5xl lg:text-6xl">
I also like to write
</h2>
<h4 class="pt-6 text-center font-header text-xl font-medium text-black sm:text-2xl lg:text-3xl" id="post">
Check out my latest posts!
</h4>
<div class="mx-auto grid w-full grid-cols-1 gap-6 pt-12 sm:w-3/4 lg:w-full lg:grid-cols-3 xl:gap-10">
<a href="/post1.html" class="">
<div style="background-image: url(/assets/img/love.jpg)"
class="group relative h-72 bg-cover bg-center bg-no-repeat sm:h-84 lg:h-64 xl:h-72">
<span
class="absolute inset-0 block bg-gradient-to-b from-blog-gradient-from to-blog-gradient-to bg-cover bg-center bg-no-repeat opacity-10 transition-opacity group-hover:opacity-50"></span>
<span
class="absolute right-0 bottom-0 mr-4 mb-4 block rounded-full border-2 border-white px-6 py-2 text-center font-body text-sm font-bold uppercase text-white md:text-base ">Read
More</span>
</div>
<div class="bg-white py-6 px-5 xl:py-8">
<span class="block font-body text-lg font-semibold text-black">
A Long Distance Relationship</span>
<span class="block pt-2 font-body text-grey-20">🌹Love🌹 is an emotion that makes us feel so many
things. It’s the butterflies in our stomachs, our hearts beating fast in our chests and our palms
sweating whenever that special someone is near. </span>
</div>
</a>
<a href="/post2.html" class="">
<div style="background-image: url(/assets/img/apple.jpg)"
class="group relative h-72 bg-cover bg-center bg-no-repeat sm:h-84 lg:h-64 xl:h-72">
<span
class="absolute inset-0 block bg-gradient-to-b from-blog-gradient-from to-blog-gradient-to bg-cover bg-center bg-no-repeat opacity-10 transition-opacity group-hover:opacity-50"></span>
<span
class="absolute right-0 bottom-0 mr-4 mb-4 block rounded-full border-2 border-white px-6 py-2 text-center font-body text-sm font-bold uppercase text-white md:text-base ">Read
More</span>
</div>
<div class="bg-white py-6 px-5 xl:py-8">
<span class="block font-body text-lg font-semibold text-black">My New M1 MacBook Air</span>
<span class="block pt-2 font-body text-grey-20"> The Apple's Macbook Airs are one of the fastest and
popular Ultrabooks in the world. According to me macbook air is the best laptop for coders and
developers. It just gives you a premium feeling.</span>
</div>
</a>
<a href="/post3.html" class="">
<div style="background-image: url(/assets/img/nature.jpg)"
class="group relative h-72 bg-cover bg-center bg-no-repeat sm:h-84 lg:h-64 xl:h-72">
<span
class="absolute inset-0 block bg-gradient-to-b from-blog-gradient-from to-blog-gradient-to bg-cover bg-center bg-no-repeat opacity-10 transition-opacity group-hover:opacity-50"></span>
<span
class="absolute right-0 bottom-0 mr-4 mb-4 block rounded-full border-2 border-white px-6 py-2 text-center font-body text-sm font-bold uppercase text-white md:text-baser">Read
More</span>
</div>
<div class="bg-white py-6 px-5 xl:py-8">
<span class="block font-body text-lg font-semibold text-black">Society – The soil in which we
grow</span>
<span class="block pt-2 font-body text-grey-20">
Nature, “a creative and controlling force in the universe,”
“the external world in its entirety” or “humankind's original condition,”
“the phenomena of the physical world collectively,
including plants, animals and the humans."
</span>
</div>
</a>
</div>
</div>
</div>
<div class="container py-16 md:py-20" id="contact">
<h3 class="text-center font-header text-4xl font-semibold uppercase text-primary sm:text-5xl lg:text-6xl">
contact form
</h3>
<h4 class="pt-6 text-center font-header font-bold text-xl text-black sm:text-2xl lg:text-3xl">
Get In Touch!
</h4>
<div class="mx-auto w-full pt-5 text-center sm:w-2/3 lg:pt-6">
<p class="font-body text-grey-10">
</p>
</div>
<form class="mx-auto w-full pt-10 sm:w-3/4 ">
<div class="flex flex-col md:flex-row ">
<input class="mr-3 w-full rounded border-grey-50 px-4 py-3 font-body font-bold text-black md:w-1/2 lg:mr-5"
placeholder="Name" type="text" id="name" />
<input
class="mt-6 w-full rounded border-grey-50 px-4 py-3 font-body font-bold text-black md:mt-0 md:ml-3 md:w-1/2 lg:ml-5"
placeholder="Email" type="text" id="email" />
</div>
<textarea class="mt-6 w-full rounded border-grey-50 px-4 py-3 font-body font-bold text-black md:mt-8"
placeholder="Message" id="message" cols="30" rows="5"></textarea>
<button
class="mt-6 flex items-center justify-center rounded-full bg-primary px-6 py-2 font-header text-lg font-bold uppercase text-white hover:bg-grey-20 hover:text-yellow">
Send
<i class="bx bx-chevron-right relative -right-2 text-3xl"></i>
</button>
</form>
<div class="flex flex-col pt-16 lg:flex-row">
<div class="w-full border-l-2 border-t-2 border-r-2 border-b-2 border-grey-60 px-6 py-6 sm:py-8 lg:w-1/3">
<div class="flex items-center">
<i class="bx bx-phone text-2xl text-grey-40"></i>
<p class="pl-2 font-body font-bold uppercase text-grey-40 lg:text-lg">
My Phone
</p>
</div>
<p class="pt-2 text-left font-body font-bold text-primary lg:text-lg">
+91 7447257170
</p>
</div>
<div
class="w-full border-l-2 border-t-0 border-r-2 border-b-2 border-grey-60 px-6 py-6 sm:py-8 lg:w-1/3 lg:border-l-0 lg:border-t-2">
<div class="flex items-center">
<i class="bx bx-envelope text-2xl text-grey-40"></i>
<p class="pl-2 font-body font-bold uppercase text-grey-40 lg:text-lg">
My Email
</p>
</div>
<p class="pt-2 text-left font-body font-bold text-primary lg:text-lg">
<a href="https://mail.google.com/mail/u/0/#inbox?compose=CllgCJfpKPpchVfdrDGkcdJPJQrDqgBjwBVjXWvcPtqtrXhnNQtfrBFjHHcQSVBfCzkhFwtlWHg"
class="hero-btn" target="blank">
dalvisuraj256@gmail.com
</a>
</p>
</div>
<div
class="w-full border-l-2 border-t-0 border-r-2 border-b-2 border-grey-60 px-6 py-6 sm:py-8 lg:w-1/3 lg:border-l-0 lg:border-t-2">
<div class="flex items-center">
<i class="bx bx-map text-2xl text-grey-40"></i>
<p class="pl-2 font-body font-bold uppercase text-grey-40 lg:text-lg">
My Address
</p>
</div>
<p class="pt-2 text-left font-body font-bold text-primary lg:text-lg">
315/1, Suvarna Niwas, Waghere colony No.1, Pimpri, Pune- 411 017
</p>
</div>