A Personal Portfolio Page built using React and MDBootstrap (React Version).
- Clone this repo in your terminal with the command
git clone https://github.com/cristalnaya/react-portfolio.git
- or just download it to your computer
- change directory into
cd react-portfolio
- run
npm install
in your terminal - run
npm start
and the app will run locally on port: 3000
Note: Node JS and NPM (Node Package Manager) is required to install and run the application.
├── package.json
├── package-lock.json
├── public
│ ├── img
│ ├── index.html
│ └── manifest.json
├── README.md
└── src
├── components
│ ├── About.js
│ ├── data.js
│ ├── Footer.js
│ ├── Header.js
│ ├── Home.js
│ ├── Jumbotron.js
│ ├── LatestWork.js
│ ├── Navbar.js
│ ├── ProjectImage.js
│ ├── Sidebar.js
│ ├── Skills.js
│ └── SkillsList.js
├── containers
│ ├── App.js
│ └── App.scss
└── index.js
This project was bootstrapped with Create React App. You can find more information on how to perform common tasks here.