- implement awards section

This commit is contained in:
Amruth Pillai
2020-07-08 20:07:28 +05:30
parent 922db70107
commit c38788aa3b
17 changed files with 206 additions and 84 deletions

View File

@ -1,12 +1,14 @@
import { AiOutlineTwitter } from "react-icons/ai";
import { FaAward } from "react-icons/fa";
import { IoMdBriefcase, IoMdDocument } from "react-icons/io";
import { MdPerson, MdSchool } from "react-icons/md";
import Awards from "../components/builder/sections/Awards";
import Education from "../components/builder/sections/Education";
import Objective from "../components/builder/sections/Objective";
import Profile from "../components/builder/sections/Profile";
import Social from "../components/builder/sections/Social";
import Work from "../components/builder/sections/Work";
import { MODAL_EVENTS } from "../contexts/ModalContext";
import ModalEvents from "../constants/ModalEvents";
export default [
{
@ -20,7 +22,7 @@ export default [
name: "Social Network",
icon: AiOutlineTwitter,
component: Social,
event: MODAL_EVENTS.SOCIAL_MODAL,
event: ModalEvents.SOCIAL_MODAL,
},
{
id: "objective",
@ -33,13 +35,20 @@ export default [
name: "Work Experience",
icon: IoMdBriefcase,
component: Work,
event: MODAL_EVENTS.WORK_MODAL,
event: ModalEvents.WORK_MODAL,
},
{
id: "education",
name: "Education",
icon: MdSchool,
component: Education,
event: MODAL_EVENTS.EDUCATION_MODAL,
event: ModalEvents.EDUCATION_MODAL,
},
{
id: "awards",
name: "Awards",
icon: FaAward,
component: Awards,
event: ModalEvents.AWARD_MODAL,
},
];