Skip to content

Commit

Permalink
Fix social links (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
andraghetti authored Dec 8, 2024
1 parent a0e2f09 commit 9d9111b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
version: 9

- name: Install Dependencies
working-directory: frontend
Expand All @@ -45,3 +45,4 @@ jobs:
with:
folder: frontend/out
branch: gh-pages
clean: true
6 changes: 3 additions & 3 deletions frontend/src/components/layout/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import settings from '@/config/settings'
import { BsGithub, BsLinkedin, BsDiscord, BsTwitterX } from 'react-icons/bs'
import { BsLinkedin, BsDiscord, BsTwitterX, BsInstagram } from 'react-icons/bs'

const socialIconsMap = {
x: BsTwitterX,
github: BsGithub,
linkedin: BsLinkedin,
discord: BsDiscord
discord: BsDiscord,
instagram: BsInstagram,
}

const Footer = () => {
Expand Down
14 changes: 9 additions & 5 deletions frontend/src/config/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ export const settings: Settings = {
hoverColor: "hover:text-[#7289DA]"
},
x: {
url: "https://x.com/goodailab",
url: "https://x.com/thegoodailab",
hoverColor: "hover:text-[#1DA1F2]"
},
linkedin: {
url: "https://linkedin.com/company/goodailab",
hoverColor: "hover:text-[#0077B5]"
}
instagram: {
url: "https://instagram.com/thegoodailab",
hoverColor: "hover:text-[#E1306C]"
},
// linkedin: {
// url: "https://linkedin.com/company/thegoodailab",
// hoverColor: "hover:text-[#0077B5]"
// },
}
};

Expand Down

0 comments on commit 9d9111b

Please sign in to comment.