mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-19 03:01:53 +10:00
- run eslint --fix across project
This commit is contained in:
@ -1,68 +1,68 @@
|
||||
import { AiFillSafetyCertificate, AiOutlineTwitter } from "react-icons/ai";
|
||||
import { FaAward, FaTools } 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 Certifications from "../components/builder/sections/Certifications";
|
||||
import Education from "../components/builder/sections/Education";
|
||||
import Objective from "../components/builder/sections/Objective";
|
||||
import Profile from "../components/builder/sections/Profile";
|
||||
import Skills from "../components/builder/sections/Skills";
|
||||
import Social from "../components/builder/sections/Social";
|
||||
import Work from "../components/builder/sections/Work";
|
||||
import ModalEvents from "../constants/ModalEvents";
|
||||
import { AiFillSafetyCertificate, AiOutlineTwitter } from 'react-icons/ai';
|
||||
import { FaAward, FaTools } 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 Certifications from '../components/builder/sections/Certifications';
|
||||
import Education from '../components/builder/sections/Education';
|
||||
import Objective from '../components/builder/sections/Objective';
|
||||
import Profile from '../components/builder/sections/Profile';
|
||||
import Skills from '../components/builder/sections/Skills';
|
||||
import Social from '../components/builder/sections/Social';
|
||||
import Work from '../components/builder/sections/Work';
|
||||
import ModalEvents from '../constants/ModalEvents';
|
||||
|
||||
export default [
|
||||
{
|
||||
id: "profile",
|
||||
name: "Profile",
|
||||
id: 'profile',
|
||||
name: 'Profile',
|
||||
icon: MdPerson,
|
||||
component: Profile,
|
||||
},
|
||||
{
|
||||
id: "social",
|
||||
name: "Social Network",
|
||||
id: 'social',
|
||||
name: 'Social Network',
|
||||
icon: AiOutlineTwitter,
|
||||
component: Social,
|
||||
event: ModalEvents.SOCIAL_MODAL,
|
||||
},
|
||||
{
|
||||
id: "objective",
|
||||
name: "Objective",
|
||||
id: 'objective',
|
||||
name: 'Objective',
|
||||
icon: IoMdDocument,
|
||||
component: Objective,
|
||||
},
|
||||
{
|
||||
id: "work",
|
||||
name: "Work Experience",
|
||||
id: 'work',
|
||||
name: 'Work Experience',
|
||||
icon: IoMdBriefcase,
|
||||
component: Work,
|
||||
event: ModalEvents.WORK_MODAL,
|
||||
},
|
||||
{
|
||||
id: "education",
|
||||
name: "Education",
|
||||
id: 'education',
|
||||
name: 'Education',
|
||||
icon: MdSchool,
|
||||
component: Education,
|
||||
event: ModalEvents.EDUCATION_MODAL,
|
||||
},
|
||||
{
|
||||
id: "awards",
|
||||
name: "Awards",
|
||||
id: 'awards',
|
||||
name: 'Awards',
|
||||
icon: FaAward,
|
||||
component: Awards,
|
||||
event: ModalEvents.AWARD_MODAL,
|
||||
},
|
||||
{
|
||||
id: "certifications",
|
||||
name: "Certifications",
|
||||
id: 'certifications',
|
||||
name: 'Certifications',
|
||||
icon: AiFillSafetyCertificate,
|
||||
component: Certifications,
|
||||
event: ModalEvents.CERTIFICATION_MODAL,
|
||||
},
|
||||
{
|
||||
id: "skills",
|
||||
name: "Skills",
|
||||
id: 'skills',
|
||||
name: 'Skills',
|
||||
icon: FaTools,
|
||||
component: Skills,
|
||||
event: ModalEvents.SKILL_MODAL,
|
||||
|
||||
@ -1,14 +1,14 @@
|
||||
export const tips = [
|
||||
"Create a professional email address.",
|
||||
"Update your contact information.",
|
||||
"Set your font size to 10-12 points.",
|
||||
"Use reverse-chronological order.",
|
||||
"Align your content to the left to make it skimmable.",
|
||||
"Make strategic use of bold, caps, and italics.",
|
||||
"Choose an attractive and readable font.",
|
||||
"Only add jobs you’ve had in the past 10-15 years.",
|
||||
"Give your sections simple subheadings.",
|
||||
"Include URLs to social media profiles, personal websites, and your blog.",
|
||||
'Create a professional email address.',
|
||||
'Update your contact information.',
|
||||
'Set your font size to 10-12 points.',
|
||||
'Use reverse-chronological order.',
|
||||
'Align your content to the left to make it skimmable.',
|
||||
'Make strategic use of bold, caps, and italics.',
|
||||
'Choose an attractive and readable font.',
|
||||
'Only add jobs you’ve had in the past 10-15 years.',
|
||||
'Give your sections simple subheadings.',
|
||||
'Include URLs to social media profiles, personal websites, and your blog.',
|
||||
];
|
||||
|
||||
export const getRandomTip = () => {
|
||||
|
||||
Reference in New Issue
Block a user