EmaSuriano / gatsby-starter-mate

An accessible and fast portfolio starter for Gatsby integrated with Contentful CMS
https://gatsby-starter-mate.netlify.app
BSD Zero Clause License
543 stars 161 forks source link

Cannot change social media #881

Closed byprakosoo closed 11 months ago

byprakosoo commented 1 year ago

I want to change my social media account from Twitter to dribble. but after I save the contentful, the twitter icon is just gone and dribblble icon won't show up in this portfolio web.

EmaSuriano commented 1 year ago

I addressed this issue inside the Customization section, please try adding the icon of Dribble and see if your issue is solved.

byprakosoo commented 1 year ago

Thank you so much @EmaSuriano

byprakosoo commented 1 year ago

Hi @EmaSuriano , I want to add my Codepen link in this web, can you add the Codepen's icon too? Thank you before.

EmaSuriano commented 1 year ago

Hey @byprakoso, as I mentioned above, I included the steps to change the icons to whatever you preferred. In your case, you need to include the following line inside src/gatsby-theme-mate/icons.js:

import {
  faMedium,
- faTwitter,
+ faDribble
  faGithub,
} from '@fortawesome/free-brands-svg-icons';
import {
  faGlobe,
  faEnvelope,
  faCoffee,
} from '@fortawesome/free-solid-svg-icons';

export const ICONS = [
  faMedium,
- faTwitter,
+ faDribble,
  faGithub,
  faGlobe,
  faEnvelope,
  faCoffee,
  fa
];

Please let me know if you still can't see the icon :)