├── .gitignore ├── README.md ├── backend ├── app.js ├── documents │ └── index.js ├── package-lock.json └── package.json ├── package.json ├── public ├── favicon.ico ├── images │ ├── 1.0.JPG │ ├── 2.0.JPG │ ├── background-1.jpg │ ├── backgroung-2.jpg │ └── profile.jpg ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── components ├── About.js ├── Education.js ├── Experience.js ├── Footer.js ├── Navigation.js ├── PdfComponent.js ├── Profile.js ├── Resume.js └── Skills.js ├── index.js ├── reportWebVitals.js ├── setupTests.js ├── smallComponents ├── Months.js └── Years.js └── state ├── action-creators └── index.js ├── index.js ├── reducers ├── aboutReducer.js ├── educationReducer.js ├── experienceReducer.js ├── fileReducer.js ├── index.js ├── profileReducer.js └── skillsReducer.js └── store.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/README.md -------------------------------------------------------------------------------- /backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/backend/app.js -------------------------------------------------------------------------------- /backend/documents/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/backend/documents/index.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/backend/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/1.0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/public/images/1.0.JPG -------------------------------------------------------------------------------- /public/images/2.0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/public/images/2.0.JPG -------------------------------------------------------------------------------- /public/images/background-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/public/images/background-1.jpg -------------------------------------------------------------------------------- /public/images/backgroung-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/public/images/backgroung-2.jpg -------------------------------------------------------------------------------- /public/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/public/images/profile.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/components/About.js -------------------------------------------------------------------------------- /src/components/Education.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/components/Education.js -------------------------------------------------------------------------------- /src/components/Experience.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/components/Experience.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/components/Navigation.js -------------------------------------------------------------------------------- /src/components/PdfComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/components/PdfComponent.js -------------------------------------------------------------------------------- /src/components/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/components/Profile.js -------------------------------------------------------------------------------- /src/components/Resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/components/Resume.js -------------------------------------------------------------------------------- /src/components/Skills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/components/Skills.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/smallComponents/Months.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/smallComponents/Months.js -------------------------------------------------------------------------------- /src/smallComponents/Years.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/smallComponents/Years.js -------------------------------------------------------------------------------- /src/state/action-creators/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/state/action-creators/index.js -------------------------------------------------------------------------------- /src/state/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/state/index.js -------------------------------------------------------------------------------- /src/state/reducers/aboutReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/state/reducers/aboutReducer.js -------------------------------------------------------------------------------- /src/state/reducers/educationReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/state/reducers/educationReducer.js -------------------------------------------------------------------------------- /src/state/reducers/experienceReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/state/reducers/experienceReducer.js -------------------------------------------------------------------------------- /src/state/reducers/fileReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/state/reducers/fileReducer.js -------------------------------------------------------------------------------- /src/state/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/state/reducers/index.js -------------------------------------------------------------------------------- /src/state/reducers/profileReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/state/reducers/profileReducer.js -------------------------------------------------------------------------------- /src/state/reducers/skillsReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/state/reducers/skillsReducer.js -------------------------------------------------------------------------------- /src/state/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yagnik-Gohil/Resume-Builder/HEAD/src/state/store.js --------------------------------------------------------------------------------