This repository offers a simple resume template that you can utilize to build your own.
# Clone the repository
git clone https://github.com/rogercortez-dev/personal-resume-template.git
# Navigate to the project directory
cd personal-resume-template
# Install dependencies
npm install
# Start the development server
npm start
- Once you started the development server, you should now be able to access the resume from
http://localhost:3000
.Then navigate toApp.js
to switch positions of different sections. - You can also edit individual components for your preferred customization.You can even create your own components and add them to the resume.
- Remember, you don't directly send the project to your hiring manager for your job application.Instead, you can print out the current page as PDF using the browser's
Print
functionality.This ensures that the resume details are neatly formatted and easily accessible. - One last thing, based on your personal preference, you may choose whether to include
Headers and footers
orBackground graphics
in the resulting PDF.
Here are the general guidelines for contributing to the project
- Fork the repository.
- Create a new branch (
git switch -c feature/your-feature
). - Make your changes and stage them (
git add .
). - Commit those changes (
git commit -m "Your perferred commit message"
). - Push to the branch (
git push origin feature/your-feature
). - Create a new Pull Request.