File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import GitLab from '@/assets/social-icons/gitlab.svg'
55import LinkedIn from ' @/assets/social-icons/linkedin-in.svg'
66import Scholar from ' @/assets/social-icons/google-scholar.svg'
77import X from ' @/assets/social-icons/x-twitter.svg'
8+ import Bluesky from ' @/assets/social-icons/bluesky.svg'
89import Inspire from ' @/assets/social-icons/inspire.svg'
910import Arxiv from ' @/assets/social-icons/arxiv.svg'
1011import Orcid from ' @/assets/social-icons/orcid.svg'
@@ -47,6 +48,13 @@ const calculatedContainerSize = activeSocial.length <= 5 ? 'size-12' : activeSoc
4748 </a >
4849 }
4950
51+ <!-- Bluesky -->
52+ { social .bluesky !== ' ' &&
53+ <a href = { social .bluesky } target = " _blank" class = { ` ${calculatedContainerSize } inline-flex items-center justify-center rounded-xl hover:bg-primary/20 transition-all duration-300 ` } >
54+ <Bluesky class = { calculatedIconSize } fill = " currentColor" />
55+ </a >
56+ }
57+
5058 <!-- Linkedin -->
5159 { social .linkedin !== ' ' &&
5260 <a href = { social .linkedin } target = " _blank" class = { ` ${calculatedContainerSize } inline-flex items-center justify-center rounded-xl hover:bg-primary/20 transition-all duration-300 ` } >
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ export const social = {
1313 email : '' ,
1414 linkedin : '' ,
1515 x : 'https://www.x.com/' ,
16+ bluesky : '' ,
1617 github : '' ,
1718 gitlab : '' ,
1819 scholar : '' ,
You can’t perform that action at this time.
0 commit comments