-
Notifications
You must be signed in to change notification settings - Fork 67
Updating the Skills section
Michael Huber edited this page Jun 17, 2022
·
17 revisions
-
Import your desired skill icons (data.js line 1-11)
-
// Skills icons - https://react-icons.github.io/react-icons/ import { FaHtml5, FaCss3Alt, FaBootstrap, FaReact, FaGitAlt, FaGithubSquare, FaLink, } from "react-icons/fa"; import { SiJavascript, SiStyledcomponents, SiRedux } from "react-icons/si";
-
-
Follow the instructions to update the skillData array (data.js line 39-89)
-
/* Skills ************************************************************** Add or remove skills in the SAME format below, there must be one icon imported above per skill below. */ export const skillData = [ { id: 1, skill: <FaHtml5 className="display-4" />, name: "HTML5", },
-
-
Follow the instructions to add a link to your resume (data.js line 91-92)
-
// Resume link (string - "https://YourResumeUrl") - I am using CloudFront to share my resume (https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Introduction.html) export const resume = null;
-