Skip to content

Commit

Permalink
feat: Add bluesky
Browse files Browse the repository at this point in the history
  • Loading branch information
allangalera committed Nov 2, 2024
1 parent 0b17d34 commit 26796f0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { FiGithub, FiLinkedin, FiTwitter } from 'solid-icons/fi';
import { TbBrandMastodon } from 'solid-icons/tb';
import { TbButterfly } from 'solid-icons/tb';

const SOCIAL_LINKS = [
{
Expand All @@ -17,6 +18,11 @@ const SOCIAL_LINKS = [
href: 'https://twitter.com/GaleraAllan',
Icon: FiTwitter,
},
{
name: 'Bluesky',
href: 'https://bsky.app/profile/allangalera.bsky.social',
Icon: TbButterfly,
},
{
name: 'Mastodon',
href: 'https://hachyderm.io/@allangalera',
Expand All @@ -26,7 +32,7 @@ const SOCIAL_LINKS = [

export const Footer = () => {
return (
<footer class="flex items-center justify-center gap-2 border-t border-t-zinc-300 p-2 dark:border-t-zinc-700">
<footer class="flex items-center justify-center gap-2 border-t border-t-zinc-300 p-2 dark:border-t-zinc-700">
{SOCIAL_LINKS.map(({ href, Icon, name }) => (
<a
class="rounded-lg p-2 text-3xl hover:bg-zinc-100 dark:hover:bg-zinc-800"
Expand Down

0 comments on commit 26796f0

Please sign in to comment.