Skip to content

Updating the Skills section

Michael Huber edited this page Jun 13, 2022 · 17 revisions

Skills

  1. 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";
  2. 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",
       },
Clone this wiki locally