/resume

My resume website

Primary LanguageSCSS

My react resume website LIVE

Gatsby.js V2 starter template based on Paradigm Shift by HTML5 UP

For an overview of the project structure please refer to the Gatsby documentation - Building with Components. This project is forked from here

Screenshot

Screenshot

Install

Make sure that you have the Gatsby CLI program installed:

npm install --global gatsby-cli

And run from your CLI:

git clone https://github.com/NavidGoalpure/resume.git

Then you can run it by:

cd resume
npm install
gatsby develop

Personalization

Edit config.js to put up your details

module.exports = {
  siteTitle: 'Gatsby Starter Paradigmshift', // <title>
  ...
  heading: 'Anubhav',
  subHeading: 'Web Developer',
  // social
  socialLinks: [
    {
      icon: 'fa-github',
      name: 'Github',
      url: 'https://github.com/anubhavsrivastava',
    }
    ...
  ],
};

And Edit componentsData.js to put up details to components

import React from 'react'

export default {
  employment: [
    {
      duration: '2017-2020',
      title: 'FRONT-END DEV',
      companyName: 'Hivaland',
      characters: [
        'bloock.ir : One of the first blockchain startups in Iran to create a platform for renting books on the ethereum blockchain.',
        'steemAce: A social network on Steem blockchain.',
        'bitseen.com : An exchange for crypto currencies.',
        'Technologies: ReactJs, GatsbyJs, NodeJs, GraphQL, Solidity.',
      ],
  ...
  }
  ...
  ]
  ...
}

Alarm

In this project you will find competing solutions side by side. For example, this project uses SCSS and CssInJS, Contex and Redux and so on. That's because I wanted to showcase my ability to use different technologies. Obviously, in a real project, your goal is to achieve project integrity, and avoid using as many competing technologies as possible.

License

Open Source Love

refer LICENSE file in this repository.