Skip to content

Commit

Permalink
Replace X link with Bluesky link
Browse files Browse the repository at this point in the history
  • Loading branch information
silvenon committed Nov 6, 2024
1 parent 139d284 commit 45018a0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
6 changes: 3 additions & 3 deletions app/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ export const socialLinks = [
icon: 'github',
},
{
name: 'X',
url: 'https://x.com/silvenon',
icon: 'x',
name: 'Bluesky',
url: 'https://bsky.app/profile/silvenon.com',
icon: 'bluesky',
},
{
name: 'LinkedIn',
Expand Down
8 changes: 3 additions & 5 deletions app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,9 @@ export default function Home() {
<span className="sr-only">{network.name}</span>
<span
className={clsx(
'block rounded-full border-2 border-transparent bg-purple-400 p-1.5 text-white transition duration-200 group-hover:scale-125 group-hover:text-white dark:bg-purple-400 dark:text-black dark:group-hover:shadow sm:p-2',
network.name === 'GitHub' &&
'group-hover:bg-github dark:group-hover:border-white',
network.name === 'X' &&
'group-hover:bg-x dark:group-hover:border-white',
'block rounded-full border-2 border-transparent bg-purple-400 p-1.5 text-white transition duration-200 group-hover:scale-125 group-hover:text-white dark:bg-purple-400 dark:text-black dark:group-hover:border-white dark:group-hover:shadow sm:p-2',
network.name === 'GitHub' && 'group-hover:bg-github',
network.name === 'Bluesky' && 'group-hover:bg-bluesky',
network.name === 'LinkedIn' && 'group-hover:bg-linkedin',
)}
>
Expand Down
4 changes: 2 additions & 2 deletions app/sprite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default {
page: colors.white,
'page-dark': colors.zinc[900],
github: '#333',
x: '#000',
bluesky: '#0a7aff',
linkedin: '#0077b5',
},
typography: ({ theme }) => ({
Expand Down

0 comments on commit 45018a0

Please sign in to comment.