@@ -138,6 +138,12 @@ const ExperienceTabs = ({ companies }: { companies: Company[] }) => {
138
138
139
139
export default function Home ( ) {
140
140
const email = "harshdave1094@gmail.com" ;
141
+ const socialLinks = {
142
+ linkedin : 'https://www.linkedin.com/in/harshdave95' ,
143
+ github : 'https://github.com/coderhd' ,
144
+ instagram : 'https://www.instagram.com/harshh.1995' ,
145
+ twitter : 'https://x.com/harshdave1094' ,
146
+ } ;
141
147
const companies = [
142
148
{
143
149
name : "Ashutec" ,
@@ -345,7 +351,7 @@ export default function Home() {
345
351
</ li >
346
352
< li >
347
353
< Link
348
- href = "https://drive.google.com/file/d/1i50ysw12PS_o5_HyocVlB6qUzbtTLOkg /view"
354
+ href = "https://drive.google.com/file/d/1a3o0W4aC-PZmn3wF7sNyFoMX4woG28wU /view"
349
355
target = "_blank"
350
356
className = "border border-[#64ffda] text-[#64ffda] px-3 py-2 rounded-sm hover:bg-[#64ffda]/10 transition-colors"
351
357
>
@@ -426,7 +432,7 @@ export default function Home() {
426
432
</ li >
427
433
< li className = "w-full text-center mt-6" >
428
434
< Link
429
- href = "https://drive.google.com/file/d/1i50ysw12PS_o5_HyocVlB6qUzbtTLOkg /view"
435
+ href = "https://drive.google.com/file/d/1a3o0W4aC-PZmn3wF7sNyFoMX4woG28wU /view"
430
436
target = "_blank"
431
437
className = "border border-[#64ffda] text-[#64ffda] px-8 py-4 rounded-sm hover:bg-[#64ffda]/10 transition-colors inline-block text-base"
432
438
>
@@ -440,16 +446,16 @@ export default function Home() {
440
446
441
447
{ /* Side social links - hidden on small screens */ }
442
448
< div className = { `fixed left-8 bottom-0 md:flex flex-col items-center gap-6 after:content-[''] after:w-[1px] after:h-24 after:bg-gray-400 after:mt-6 ${ isLoading ? 'opacity-0' : 'opacity-100 animate-fadeIn' } hidden` } >
443
- < Link href = "# " className = "hover:text-[#64ffda] transition-colors p-2 duration-200" >
449
+ < Link href = { socialLinks . linkedin } target = "_blank " className = "hover:text-[#64ffda] transition-colors p-2 duration-200" >
444
450
< Linkedin size = { 20 } />
445
451
</ Link >
446
- < Link href = "# " className = "hover:text-[#64ffda] transition-colors p-2 duration-200" >
452
+ < Link href = { socialLinks . github } target = "_blank " className = "hover:text-[#64ffda] transition-colors p-2 duration-200" >
447
453
< Github size = { 20 } />
448
454
</ Link >
449
- < Link href = "# " className = "hover:text-[#64ffda] transition-colors p-2 duration-200" >
455
+ < Link href = { socialLinks . instagram } target = "_blank " className = "hover:text-[#64ffda] transition-colors p-2 duration-200" >
450
456
< Instagram size = { 20 } />
451
457
</ Link >
452
- < Link href = "# " className = "hover:text-[#64ffda] transition-colors p-2 duration-200" >
458
+ < Link href = { socialLinks . twitter } target = "_blank " className = "hover:text-[#64ffda] transition-colors p-2 duration-200" >
453
459
< Twitter size = { 20 } />
454
460
</ Link >
455
461
</ div >
@@ -705,16 +711,16 @@ export default function Home() {
705
711
>
706
712
{ /* Mobile social links (visible only on mobile) */ }
707
713
< div className = "flex items-center justify-center gap-6 mb-3 md:hidden" >
708
- < Link href = "# " className = "text-[#0c192f] transition-colors p-1" >
714
+ < Link href = { socialLinks . linkedin } target = "_blank " className = "text-[#0c192f] transition-colors p-1" >
709
715
< Linkedin size = { 18 } />
710
716
</ Link >
711
- < Link href = "# " className = "text-[#0c192f] transition-colors p-1" >
717
+ < Link href = { socialLinks . github } target = "_blank " className = "text-[#0c192f] transition-colors p-1" >
712
718
< Github size = { 18 } />
713
719
</ Link >
714
- < Link href = "# " className = "text-[#0c192f] transition-colors p-1" >
720
+ < Link href = { socialLinks . instagram } target = "_blank " className = "text-[#0c192f] transition-colors p-1" >
715
721
< Instagram size = { 18 } />
716
722
</ Link >
717
- < Link href = "# " className = "text-[#0c192f] transition-colors p-1" >
723
+ < Link href = { socialLinks . twitter } target = "_blank " className = "text-[#0c192f] transition-colors p-1" >
718
724
< Twitter size = { 18 } />
719
725
</ Link >
720
726
</ div >
@@ -729,7 +735,14 @@ export default function Home() {
729
735
document . getElementById ( 'footer-container' ) ?. classList . add ( 'bg-[#64ffda]' ) ;
730
736
} }
731
737
>
732
- Designed & Built By Harsh Dave
738
+ < a
739
+ href = "https://github.com/coderhd/coderhd.github.io"
740
+ target = "_blank"
741
+ rel = "noopener noreferrer"
742
+ className = "text-inherit"
743
+ >
744
+ Designed & Built By Harsh Dave
745
+ </ a >
733
746
</ span >
734
747
</ footer >
735
748
< / d i v >
0 commit comments