/hardikchopra

🚀 Personal Portfolio Website powered by Next.js ✨

Primary LanguageJavaScript

image

Hardik Chopra

Personal Portfolio powered by Next.js

💻 Building locally

# Clone the repo
git clone https://github.com/hardikchopra242/hardikchopra.git
cd hardikchopra

# Install dependencies
npm install

# Start development server
npm run dev

🚀 Building for production

# Clone the repo
git clone https://github.com/hardikchopra242/hardikchopra.git
cd hardikchopra

# Install dependencies
npm install

# Build
npm build

📂 What's inside?

Let's have a look at the file structure

.
├── components
│   ├── About
│   │   ├── About.jsx
│   │   └── About.style.js
│   ├── Contact
│   │   ├── Contact.jsx
│   │   └── Contact.style.js
│   ├── Footer
│   │   ├── Footer.jsx
│   │   └── Footer.style.js
│   ├── Introduction
│   │   ├── Introduction.jsx
│   │   ├── Introduction.style.js
│   │   └── TextLarge.style.js
│   ├── Loader
│   │   ├── Loader.jsx
│   │   └── Loader.style.js
│   ├── Navigation
│   │   ├── Navigation.jsx
│   │   └── Navigation.style.js
│   ├── NotFound
│   │   ├── NotFound.jsx
│   │   └── NotFound.style.js
│   ├── Projects
│   │   ├── Projects.jsx
│   │   └── Projects.style.js
│   ├── SEO
│   │   └── SEO.jsx
│   ├── Skills
│   │   ├── Skills.jsx
│   │   └── Skills.style.js
│   └── Wrapper
│       └── Wrapper.jsx
|
├── next.config.js
├── package.json
├── package-lock.json
|
├── pages
│   ├── 404.jsx
│   ├── _document.jsx
│   └── index.jsx
|
├── public
│   ├── Detectsy.png
│   ├── favicon.png
│   ├── float.svg
│   ├── mail.svg
│   ├── RGBeX.png
│   ├── skills
│   │   ├── arduino.js
│   │   ├── c.js
│   │   ├── cpp.js
│   │   ├── css.js
│   │   ├── express.js
│   │   ├── git.js
│   │   ├── heroku.js
│   │   ├── html.js
│   │   ├── javascript.js
│   │   ├── linux.js
│   │   ├── mysql.js
│   │   ├── next.js
│   │   ├── node.js
│   │   ├── postgres.js
│   │   ├── postman.js
│   │   ├── python.js
│   │   ├── react.js
│   │   └── sass.js
│   └── Virtuo.png
|
├── README.md
├── stitches.config.js
└── styles
    ├── global.style.js
    └── theme.config.js


🔑 Contribute

  • If you want to suggest some other feature, please open an issue here.

  • If you noticed some typos or a need to fix syntax, don't hesitate to make a pull request.

    # Clone repo
    git clone https://github.com/hardikchopra242/hardikchopra.git
    
    # cd into the repo
    cd hardikchopra
    
    # Make a new branch
    git branch feature
    
    # Make Changes
    
    # Add changes to staging area
    git add .
    
    # Commit your changes
    git commit -m"Commit Message"
    
    # Push your changes
    git push
    
    # Make a pull request
  • You can find existing issues here, if you can fix them, then go for it!