0xtruly / portfolioV2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gatsby-starter

Gatsby.js V2 starter template

For an overview of the project structure please refer to the Gatsby documentation - Building with Components.

Install

Make sure that you have the Gatsby CLI program installed:

npm install --global gatsby-cli

And run from your CLI:

gatsby new <site-name> https://github.com/username/site-name

Then you can run it by:

cd gatsby-example-site
npm install
gatsby develop

Personalization

Edit config.js to put up your details

module.exports = {
  siteTitle: 'Gatsby Starter Resume', // <title>
  ...
  firstName: 'Segun',
  lastName: 'Adebanjo',
  // social
  socialLinks: [
    {
      icon: 'fa-github',
      name: 'Github',
      url: 'https://github.com/segun-ade',
    }
    ...
  ],
};

About


Languages

Language:JavaScript 56.3%Language:SCSS 43.7%