Skip to content

Commit

Permalink
Challenge: Social Profiles component
Browse files Browse the repository at this point in the history
  • Loading branch information
15Dkatz committed Oct 19, 2022
1 parent 15aa9bf commit da51e48
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions portfolio/src/data/socialProfiles.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import emailIcon from '../assets/email_icon.png';
import githubIcon from '../assets/github_icon.png';
import linkedinIcon from '../assets/linkedin_icon.png';
import twitterIcon from '../assets/twitter_icon.png';

const SOCIAL_PROFILES = [
{
id: 1,
link: 'mailto:[email protected]',
image: emailIcon
},
{
id: 2,
link: 'https://github.com/15Dkatz',
image: githubIcon
},
{
id: 3,
link: 'https://www.linkedin.com/in/david-katz-sf',
image: linkedinIcon
},
{
id: 4,
link: 'https://twitter.com/dkcodehelper',
image: twitterIcon
}
];

export default SOCIAL_PROFILES;

0 comments on commit da51e48

Please sign in to comment.