Gatsby.js V2 starter template
For an overview of the project structure please refer to the Gatsby documentation - Building with Components.
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
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',
}
...
],
};