Skip to content

Commit

Permalink
feat: add bluesky connection
Browse files Browse the repository at this point in the history
  • Loading branch information
prplwtf authored Nov 22, 2024
1 parent 4e67b0f commit 2a387c1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/sections/RootSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ function RootSection() {
window.Configuration.Connections.YouTube,
Boolean(window.Configuration.Connections.YouTube || false)
)}
${ConnectionElement(
"dot",
`bsky.app/profile/${window.Configuration.Connections.Bluesky}`,
window.Configuration.Connections.Bluesky,
Boolean(window.Configuration.Connections.Bluesky || false)
)}
${ConnectionElement(
"twitter",
`x.com/${window.Configuration.Connections.Twitter}`,
Expand All @@ -32,4 +38,4 @@ function RootSection() {
</div>
${FooterElement()}
`
}
}

0 comments on commit 2a387c1

Please sign in to comment.