https://github.com/pransu-code/portfoliowebsite
This is my portfolio website Version 1.0
https://github.com/pransu-code/portfoliowebsite
Last synced: 5 months ago
JSON representation
This is my portfolio website Version 1.0
- Host: GitHub
- URL: https://github.com/pransu-code/portfoliowebsite
- Owner: Pransu-code
- License: mit
- Created: 2024-07-31T12:52:42.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-08-06T08:01:49.000Z (over 1 year ago)
- Last Synced: 2025-03-05T20:36:51.968Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://pransu-portfolio.netlify.app/
- Size: 11.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Dev Portfolio
## A minimal portfolio template for Developers!
## Features
⚡️ Modern UI Design + Reveal Animations\
⚡️ Made with React\
⚡️ Fully Responsive\
⚡️ Easily Customizable\
⚡️ Well organized documentation
## Demo
To view the demo: **[click here](https://pransu-portfolio.netlify.app/)**
## Why do you need a portfolio? ☝️
- Professional way to showcase your work
- Increases your visibility and online presence
- better chance of getting work opportunity
---
## Getting Started 🚀
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
### Prerequisites 📋
You'll need [Git](https://git-scm.com) and [Node.js](https://nodejs.org/en/download/) (which comes with [NPM](http://npmjs.com)) installed on your computer.
Also, you can use [Yarn](https://yarnpkg.com/) instead of NPM ☝️
## Setup 🔧
From your command line, first clone Dev Portfolio:
```bash
# Clone the repository
# Move into the repository
$ cd dev-portfolio
# Remove the current origin repository
$ git remote remove origin
```
After that, you can install the dependencies either using NPM or Yarn.
Using NPM: Simply run the below commands.
```bash
# Install dependencies
$ npm install --force
# Start the development server
$ npm start
```
Using Yarn: Be aware of that you'll need to delete the `package-lock.json` file if exists before executing the below commands.
```bash
# Install dependencies
$ yarn
# Start the development server
$ yarn start
```
Once your server has started, go to this url `http://localhost:3000/` to see the portfolio locally.
The page will reload if you make edits.
---