├── .gitignore
├── LICENSE
├── README.md
├── craco.config.js
├── package-lock.json
├── package.json
├── public
├── index.html
├── logo.ico
├── logo192.png
├── logo512.png
├── manifest.json
└── robots.txt
├── src
├── App.js
├── App.test.js
├── assets
│ └── logo.svg
├── components
│ ├── LandingPage.js
│ ├── Nav.js
│ ├── Resume.js
│ ├── TemplateData.js
│ └── Templates
│ │ ├── Minimalist.js
│ │ └── TwoColumn.js
├── index.css
├── index.js
├── logo.svg
├── reportWebVitals.js
└── setupTests.js
└── tailwind.config.js
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2021 Piyush Sinha
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Tech Resume
2 | ## A resume builder which helps you to effortlessly make a job-worthy resume. Easy to use and done within minutes - try now for free!
3 | Live: [https://main.doo2i0aqct9l.amplifyapp.com/](https://main.doo2i0aqct9l.amplifyapp.com/)
4 |
5 |
6 |
7 | ## :dizzy: Features
8 | * Ready-to-use templates
9 | * Color picker
10 | * Download PDF
11 |
12 |
13 | ## :man_technologist: Technology Stack
14 | * [React](https://reactjs.org)
15 | * [Tailwind CSS](https://tailwindcss.com/)
16 | * [Hero Icons](https://heroicons.com/)
17 | * [AWS Amplify](https://aws.amazon.com/amplify/)
18 |
19 | ## :zap: Installation
20 | 1. Clone / Download this repo.
21 | 2. Inside the project open a terminal and run:
22 | ```bash
23 | npm install
24 | ```
25 | This will install all the project dependencies.
26 |
27 | 3. To start the development server run:
28 | ```bash
29 | npm start
30 | ```
31 |
32 | ## :page_facing_up: License
33 |
34 | All the code available under the MIT license. See [LICENSE](LICENSE).
35 |
36 | ```sh
37 | MIT License
38 |
39 | Copyright (c) 2021 Piyush Sinha
40 |
41 | Permission is hereby granted, free of charge, to any person obtaining a copy
42 | of this software and associated documentation files (the "Software"), to deal
43 | in the Software without restriction, including without limitation the rights
44 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
45 | copies of the Software, and to permit persons to whom the Software is
46 | furnished to do so, subject to the following conditions:
47 |
48 | The above copyright notice and this permission notice shall be included in all
49 | copies or substantial portions of the Software.
50 |
51 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
52 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
53 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
54 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
55 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
56 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
57 | SOFTWARE.
58 | ```
59 |
--------------------------------------------------------------------------------
/craco.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | style: {
3 | postcss: {
4 | plugins: [
5 | require('tailwindcss'),
6 | require('autoprefixer'),
7 | ],
8 | },
9 | },
10 | }
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "tech-resume",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "@craco/craco": "^6.1.0",
7 | "@tailwindcss/postcss7-compat": "^2.0.2",
8 | "@testing-library/jest-dom": "^5.11.9",
9 | "@testing-library/react": "^11.2.5",
10 | "@testing-library/user-event": "^12.6.3",
11 | "autoprefixer": "^9.8.6",
12 | "postcss": "^7.0.35",
13 | "react": "^17.0.1",
14 | "react-dom": "^17.0.1",
15 | "react-router-dom": "^5.2.0",
16 | "react-scripts": "4.0.2",
17 | "tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.2",
18 | "web-vitals": "^1.1.0"
19 | },
20 | "scripts": {
21 | "start": "craco start",
22 | "build": "craco build",
23 | "test": "craco test",
24 | "eject": "react-scripts eject"
25 | },
26 | "eslintConfig": {
27 | "extends": [
28 | "react-app",
29 | "react-app/jest"
30 | ]
31 | },
32 | "browserslist": {
33 | "production": [
34 | ">0.2%",
35 | "not dead",
36 | "not op_mini all"
37 | ],
38 | "development": [
39 | "last 1 chrome version",
40 | "last 1 firefox version",
41 | "last 1 safari version"
42 | ]
43 | }
44 | }
45 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |