diff options
author | Nick Van Doorn <vandoorn.nick@gmail.com> | 2019-03-12 00:23:00 -0700 |
---|---|---|
committer | Nick Van Doorn <vandoorn.nick@gmail.com> | 2019-03-12 00:24:38 -0700 |
commit | fd06cd8e40db1cda81d9dc5ee39deac805f8b141 (patch) | |
tree | 54fd6d2fa57685ae9f82c1ac202b806b6867674e /src/pages/about.js | |
parent | f272b8b573159e0bf76c309276832ffa7a08c896 (diff) |
Use font awesome SVG for social icons
Diffstat (limited to 'src/pages/about.js')
-rw-r--r-- | src/pages/about.js | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/src/pages/about.js b/src/pages/about.js index 932e9f4..e110645 100644 --- a/src/pages/about.js +++ b/src/pages/about.js @@ -1,8 +1,15 @@ import React from 'react' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import { + faHeart, + faMap, + faWrench, + faFlask, + faEnvelope +} from '@fortawesome/free-solid-svg-icons' import Layout from '../components/layout' import { AboutEntry } from '../components/about-entry' -import { FontAwesome } from '../components/font-awesome' import { Personal } from '../components/personal' import { SplitContainer } from '../components/split-container' @@ -28,7 +35,7 @@ const aboutLists = [ { header: ( <> - Values and Ethics <FontAwesome name="heart" /> + Values and Ethics <FontAwesomeIcon icon={faHeart} /> </> ), listItems: [ @@ -41,7 +48,7 @@ const aboutLists = [ { header: ( <> - Skills and Experience <FontAwesome name="map" /> + Skills and Experience <FontAwesomeIcon icon={faMap} /> </> ), listItems: skills @@ -49,7 +56,7 @@ const aboutLists = [ { header: ( <> - Tools <FontAwesome name="wrench" /> + Tools <FontAwesomeIcon icon={faWrench} /> </> ), listItems: tools @@ -57,7 +64,7 @@ const aboutLists = [ { header: ( <> - Future Learning Ideas <FontAwesome name="flask" /> + Future Learning Ideas <FontAwesomeIcon icon={faFlask} /> </> ), listItems: [ @@ -81,7 +88,7 @@ const personalProps = { imgUrl: profilePic, email: ( <p> - <FontAwesome name="envelope-o" /> nick <em>at</em> nv <em>dot</em>{' '} + <FontAwesomeIcon icon={faEnvelope} /> nick <em>at</em> nv <em>dot</em>{' '} delivery </p> ) |