mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-19 11:12:00 +10:00
- implement awards section
This commit is contained in:
@ -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,
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user