├── .gitignore ├── README.md ├── assets └── resume.png ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── resume-favicon.png └── robots.txt └── src ├── App.js ├── components ├── Buttons.js ├── CollapsedForm.js ├── CreateForm.js ├── Customize.js ├── DisplayForms.js ├── DisplaySection.js ├── ExpandSection.js ├── InputGroup.js ├── Resume.js ├── Sidebar.js ├── TemplateLoader.js ├── customize │ ├── AccentColorEdit.js │ ├── FontEdit.js │ └── ResumeColsEdit.js ├── education │ ├── AddEducationSection.js │ ├── EducationForm.js │ ├── EducationInfo.js │ └── EducationInfoSection.js ├── experience │ ├── AddExperienceSection.js │ ├── ExperienceForm.js │ ├── ExperienceInfo.js │ └── ExperienceInfoSection.js └── personal-info │ ├── PersonalDetails.js │ └── PersonalInfoSection.js ├── example-data.js ├── fonts ├── NotoSans-Black.ttf ├── NotoSans-BlackItalic.ttf ├── NotoSans-Bold.ttf ├── NotoSans-BoldItalic.ttf ├── NotoSans-ExtraBold.ttf ├── NotoSans-ExtraBoldItalic.ttf ├── NotoSans-ExtraLight.ttf ├── NotoSans-ExtraLightItalic.ttf ├── NotoSans-Italic.ttf ├── NotoSans-Light.ttf ├── NotoSans-LightItalic.ttf ├── NotoSans-Medium.ttf ├── NotoSans-MediumItalic.ttf ├── NotoSans-Regular.ttf ├── NotoSans-SemiBold.ttf ├── NotoSans-SemiBoldItalic.ttf ├── NotoSans-Thin.ttf └── NotoSans-ThinItalic.ttf ├── index.js └── styles ├── App.css ├── Buttons.css ├── CollapsedForm.css ├── CreateForm.css ├── EducationInfo.css ├── ExpandSection.css ├── ExperienceInfo.css ├── InputGroup.css ├── PersonalDetails.css ├── PersonalInfoSection.css ├── Resume.css ├── Section.css ├── Sidebar.css ├── TemplateLoader.css ├── customize ├── AccentColorEdit.css ├── Customize.css ├── FontEdit.css └── ResumeColsEdit.css └── index.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/README.md -------------------------------------------------------------------------------- /assets/resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/assets/resume.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/resume-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/public/resume-favicon.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/Buttons.js -------------------------------------------------------------------------------- /src/components/CollapsedForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/CollapsedForm.js -------------------------------------------------------------------------------- /src/components/CreateForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/CreateForm.js -------------------------------------------------------------------------------- /src/components/Customize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/Customize.js -------------------------------------------------------------------------------- /src/components/DisplayForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/DisplayForms.js -------------------------------------------------------------------------------- /src/components/DisplaySection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/DisplaySection.js -------------------------------------------------------------------------------- /src/components/ExpandSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/ExpandSection.js -------------------------------------------------------------------------------- /src/components/InputGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/InputGroup.js -------------------------------------------------------------------------------- /src/components/Resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/Resume.js -------------------------------------------------------------------------------- /src/components/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/Sidebar.js -------------------------------------------------------------------------------- /src/components/TemplateLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/TemplateLoader.js -------------------------------------------------------------------------------- /src/components/customize/AccentColorEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/customize/AccentColorEdit.js -------------------------------------------------------------------------------- /src/components/customize/FontEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/customize/FontEdit.js -------------------------------------------------------------------------------- /src/components/customize/ResumeColsEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/customize/ResumeColsEdit.js -------------------------------------------------------------------------------- /src/components/education/AddEducationSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/education/AddEducationSection.js -------------------------------------------------------------------------------- /src/components/education/EducationForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/education/EducationForm.js -------------------------------------------------------------------------------- /src/components/education/EducationInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/education/EducationInfo.js -------------------------------------------------------------------------------- /src/components/education/EducationInfoSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/education/EducationInfoSection.js -------------------------------------------------------------------------------- /src/components/experience/AddExperienceSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/experience/AddExperienceSection.js -------------------------------------------------------------------------------- /src/components/experience/ExperienceForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/experience/ExperienceForm.js -------------------------------------------------------------------------------- /src/components/experience/ExperienceInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/experience/ExperienceInfo.js -------------------------------------------------------------------------------- /src/components/experience/ExperienceInfoSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/experience/ExperienceInfoSection.js -------------------------------------------------------------------------------- /src/components/personal-info/PersonalDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/personal-info/PersonalDetails.js -------------------------------------------------------------------------------- /src/components/personal-info/PersonalInfoSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/components/personal-info/PersonalInfoSection.js -------------------------------------------------------------------------------- /src/example-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/example-data.js -------------------------------------------------------------------------------- /src/fonts/NotoSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-Black.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-BlackItalic.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-BoldItalic.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-ExtraBold.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-ExtraLight.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-Italic.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-Light.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-LightItalic.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-Medium.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-MediumItalic.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-SemiBold.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-Thin.ttf -------------------------------------------------------------------------------- /src/fonts/NotoSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/fonts/NotoSans-ThinItalic.ttf -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/App.css -------------------------------------------------------------------------------- /src/styles/Buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/Buttons.css -------------------------------------------------------------------------------- /src/styles/CollapsedForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/CollapsedForm.css -------------------------------------------------------------------------------- /src/styles/CreateForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/CreateForm.css -------------------------------------------------------------------------------- /src/styles/EducationInfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/EducationInfo.css -------------------------------------------------------------------------------- /src/styles/ExpandSection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/ExpandSection.css -------------------------------------------------------------------------------- /src/styles/ExperienceInfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/ExperienceInfo.css -------------------------------------------------------------------------------- /src/styles/InputGroup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/InputGroup.css -------------------------------------------------------------------------------- /src/styles/PersonalDetails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/PersonalDetails.css -------------------------------------------------------------------------------- /src/styles/PersonalInfoSection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/PersonalInfoSection.css -------------------------------------------------------------------------------- /src/styles/Resume.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/Resume.css -------------------------------------------------------------------------------- /src/styles/Section.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/Section.css -------------------------------------------------------------------------------- /src/styles/Sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/Sidebar.css -------------------------------------------------------------------------------- /src/styles/TemplateLoader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/TemplateLoader.css -------------------------------------------------------------------------------- /src/styles/customize/AccentColorEdit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/customize/AccentColorEdit.css -------------------------------------------------------------------------------- /src/styles/customize/Customize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/customize/Customize.css -------------------------------------------------------------------------------- /src/styles/customize/FontEdit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/customize/FontEdit.css -------------------------------------------------------------------------------- /src/styles/customize/ResumeColsEdit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/customize/ResumeColsEdit.css -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharkri/cv-application/HEAD/src/styles/index.css --------------------------------------------------------------------------------