Initial commit
Scaffolded with Gatsby CLI 2.8.26 and Gatsby 2.18.12
Showing
- .gitignore 69 additions, 0 deletions.gitignore
- .gitlab-ci.yml 40 additions, 0 deletions.gitlab-ci.yml
- LICENSE 22 additions, 0 deletionsLICENSE
- README.md 80 additions, 0 deletionsREADME.md
- gatsby-browser.js 7 additions, 0 deletionsgatsby-browser.js
- gatsby-config.js 34 additions, 0 deletionsgatsby-config.js
- gatsby-node.js 7 additions, 0 deletionsgatsby-node.js
- gatsby-ssr.js 7 additions, 0 deletionsgatsby-ssr.js
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 44 additions, 0 deletionspackage.json
- src/components/header.js 42 additions, 0 deletionssrc/components/header.js
- src/components/image.js 32 additions, 0 deletionssrc/components/image.js
- src/components/layout.css 622 additions, 0 deletionssrc/components/layout.css
- src/components/layout.js 52 additions, 0 deletionssrc/components/layout.js
- src/components/seo.js 88 additions, 0 deletionssrc/components/seo.js
- src/images/gatsby-astronaut.png 0 additions, 0 deletionssrc/images/gatsby-astronaut.png
- src/images/gatsby-icon.png 0 additions, 0 deletionssrc/images/gatsby-icon.png
- src/pages/404.js 14 additions, 0 deletionssrc/pages/404.js
- src/pages/index.js 21 additions, 0 deletionssrc/pages/index.js
- src/pages/page-2.js 16 additions, 0 deletionssrc/pages/page-2.js
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
gatsby-browser.js
0 → 100644
gatsby-config.js
0 → 100644
gatsby-node.js
0 → 100644
gatsby-ssr.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "gatsby-starter-default", | ||
"private": true, | ||
"description": "A simple starter to get up and developing quickly with Gatsby", | ||
"version": "0.1.0", | ||
"author": "Kyle Mathews <mathews.kyle@gmail.com>", | ||
"dependencies": { | ||
"gatsby": "^2.18.12", | ||
"gatsby-image": "^2.2.34", | ||
"gatsby-plugin-manifest": "^2.2.31", | ||
"gatsby-plugin-offline": "^3.0.27", | ||
"gatsby-plugin-react-helmet": "^3.1.16", | ||
"gatsby-plugin-sharp": "^2.3.5", | ||
"gatsby-source-filesystem": "^2.1.40", | ||
"gatsby-transformer-sharp": "^2.3.7", | ||
"prop-types": "^15.7.2", | ||
"react": "^16.12.0", | ||
"react-dom": "^16.12.0", | ||
"react-helmet": "^5.2.1" | ||
}, | ||
"devDependencies": { | ||
"prettier": "^1.19.1" | ||
}, | ||
"keywords": [ | ||
"gatsby" | ||
], | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "gatsby build", | ||
"develop": "gatsby develop", | ||
"format": "prettier --write \"**/*.{js,jsx,json,md}\"", | ||
"start": "npm run develop", | ||
"serve": "gatsby serve", | ||
"clean": "gatsby clean", | ||
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/gatsbyjs/gatsby-starter-default" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/gatsbyjs/gatsby/issues" | ||
} | ||
} |
src/components/header.js
0 → 100644
src/components/image.js
0 → 100644
src/components/layout.css
0 → 100644
src/components/layout.js
0 → 100644
src/components/seo.js
0 → 100644
src/images/gatsby-astronaut.png
0 → 100644
163 KiB
src/images/gatsby-icon.png
0 → 100644
20.7 KiB
src/pages/404.js
0 → 100644
src/pages/index.js
0 → 100644
src/pages/page-2.js
0 → 100644