Skip to content

Commit

Permalink
Added BSky to individuals (just me, please add your own, not sure of …
Browse files Browse the repository at this point in the history
…all your accounts, but I'll follow once I do)

Also added email and DDD Bsky to footer
  • Loading branch information
CarlSargunar committed Dec 18, 2024
1 parent e003ada commit 1486275
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/lib/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@
</div>
{/if}
<div class="footer primary-bg">
<a href="https://bsky.app/profile/dddsouthwest.bsky.social" target="_blank">
<i class="fa-brands fa-bluesky fa-3x" title="DDD South West BlueSky"></i>
</a>
<a href="https://twitter.com/dddsouthwest" target="_blank">
<i class="fa-brands fa-twitter fa-3x" title="DDD South West Twitter"></i>
</a>
<a href="mailto:[email protected]">
<i class="fa-solid fa-envelope fa-3x icon" title="DDD South West Email"></i>
</a>
<a href="https://www.linkedin.com/company/ddd-south-west/" target="_blank">
<i class="fa-brands fa-linkedin fa-3x" title="DDD South West LinkedIn"></i>
</a>
Expand All @@ -43,4 +49,13 @@
h2 {
padding: 0 10px;
}
.icon {
color: black;
transition: color 0.3s;
}
.icon:hover {
color: white;
}
</style>
6 changes: 6 additions & 0 deletions src/routes/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
imageName: 'carl.jpg',
email: '[email protected]',
twitter: 'carlcod_es',
bsky: 'carlcod.es',
linkedIn: 'carl-sargunar-63b5814'
},
{
Expand Down Expand Up @@ -85,6 +86,11 @@
<img src="../images/team/{member.imageName}" alt={member.name} class="boop-effect" />
<span>{member.name}</span>
<span>
{#if member.bsky}
<a href="https://bsky.app/profile/{member.bsky}" target="_blank">
<i class="fa-brands fa-bluesky fa-2x icon" title="{member.name} BlueSky"></i>
</a>
{/if}
{#if member.twitter}
<a href="https://twitter.com/{member.twitter}" target="_blank">
<i class="fa-brands fa-twitter fa-2x icon" title="{member.name} Twitter"></i>
Expand Down

0 comments on commit 1486275

Please sign in to comment.