CodeDrips' default starter(Extended)

🚀 Quick start

  1. Clone the repo.

    Use the Gatsby CLI to create a new site, specifying this repo.

    # create a new Gatsby site using the default starter
    npx gatsby new site-folder-name https://github.com/inkoop/gatsby-starter-codedrips
  2. Available Scripts

    npm start
    npm run build
    npm run format
    npm run lint
    npm run lint-fix

🧐 What's inside?

A quick look at the base for this starter.

.
├── LICENSE
├── README.md
├── gatsby-config.js
├── package.json
├── src
│   ├── assets
│   │   ├── fonts
│   │   ├── images
│   │   │   └── favicon.png
│   │   └── scss
│   │       ├── components
│   │       ├── global
│   │       │   ├── _base.scss
│   │       │   ├── _fonts.scss
│   │       │   ├── _form.scss
│   │       │   ├── _mixins.scss
│   │       │   └── _normalize.scss
│   │       └── main.scss
│   ├── components
│   │   └── header.js
│   │   └── header.scss
│   │   └── footer.js
│   │   └── footer.scss
│   │   └── seo.js
│   ├── layouts
│   │   └── index.js
│   │   └── index.scss
│   ├── pages
│   │   ├── 404.js
│   │   └── index.js
│   ├── templates
│   └── utils
│       └── link.js
├── static
│   └── _redirects
└── yarn.lock