Skip to content

dscpvgcoet/hacktoberfest2021-react-portfolio-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-portfolio-template

Minimal Portfolio template for Developers/Designers built with React. Use it to showcase your work, testimonials and other information to clients.

Preview -

preview

The Data can be customised in the src/components/yourdata.js

This repository contains an easy-to-customize personal portfolio template that was created with React. It is lightweight and fully responsive.

Features

  • Production Ready
  • Easy To Customize and Personalise
  • Minimal & Modern Design

What you can contribute?

You can contribute by

  • improving the functionality
  • adding new feature
  • creating new pages/sections(eg.skills, blog, achievements etc)
  • making some cool animations
  • improving the UI
  • avoiding use of any React UI library

How to contribute?

  1. Fork this repo.
  2. Open the terminal and clone your fork using
git clone http://github.com/{your_username}/hacktoberfest2021-react-portfolio-template
    • In the project directory run:

      npm install

      to install the required libraries.
    • To run the app in the development mode:

      npm start

      Open http://localhost:3000 to view it in the browser.
  1. Before making changes, in the project directory checkout to a new branch with name of your choice
git checkout -b {branch_name}
  1. Start adding/modifying the code.

    Do not make any changes to the yourdata.js file while contributing.

  2. Add the files you want to commit to the staging area.
git add {folder_name/file_name}
  1. Commit the changes
git commit -m '{Your commit message}'
  1. Push to GitHub.
git push origin {branch_name}
  1. Go to http://github.com/{your_username}/hacktoberfest2021-react-portfolio-template , on the left there is a button to change your branch. Click on it and select {branch_name}.
  2. Now you will be able see a button named "Pull request". Click on it.
  3. Add appropriate message and click the "Create Pull Request" button.

Resolving errors

  1. If you get a message like "This branch is X commits ahead, Y commits behind" then visit this thread and follow the steps. Also don't forget to push and pull from proper branches.
  2. In case of merge conflict visit this thread.