├── .nvmrc ├── .gitignore ├── src └── images │ ├── icon.png │ ├── cocktail.jpg │ ├── smashburger.jpg │ ├── ivana-la-61jg6zviI7I-unsplash.jpg │ └── shiangling-RQbwjCKWxQw-unsplash.jpg ├── .prettierrc ├── README.md └── package.json /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.6.1 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .cache/ 3 | public 4 | 5 | # Local Netlify folder 6 | .netlify -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/frontend-masters-intro-to-gatsby-project/HEAD/src/images/icon.png -------------------------------------------------------------------------------- /src/images/cocktail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/frontend-masters-intro-to-gatsby-project/HEAD/src/images/cocktail.jpg -------------------------------------------------------------------------------- /src/images/smashburger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/frontend-masters-intro-to-gatsby-project/HEAD/src/images/smashburger.jpg -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "arrowParens": "always", 3 | "semi": true, 4 | "trailingComma": "all", 5 | "singleQuote": true, 6 | "tabWidth": 2, 7 | "useTabs": false 8 | } 9 | -------------------------------------------------------------------------------- /src/images/ivana-la-61jg6zviI7I-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/frontend-masters-intro-to-gatsby-project/HEAD/src/images/ivana-la-61jg6zviI7I-unsplash.jpg -------------------------------------------------------------------------------- /src/images/shiangling-RQbwjCKWxQw-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/frontend-masters-intro-to-gatsby-project/HEAD/src/images/shiangling-RQbwjCKWxQw-unsplash.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Frontend Masters Intro to Gatsby with Jason Lengstorf 2 | 3 | This is the project we'll build together to introduce you to Gatsby! 4 | 5 | See the [workshop site](https://frontendmasters.learnwithjason.dev/intro-to-gatsby/) for more details. 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "frontend-masters-intro-to-gatsby", 3 | "version": "1.0.0", 4 | "private": true, 5 | "description": "Frontend Masters Intro to Gatsby", 6 | "author": "Jason Lengstorf", 7 | "keywords": [ 8 | "gatsby" 9 | ], 10 | "scripts": { 11 | "develop": "gatsby develop", 12 | "start": "gatsby develop", 13 | "build": "gatsby build", 14 | "serve": "gatsby serve", 15 | "clean": "gatsby clean" 16 | }, 17 | "dependencies": { 18 | "gatsby": "^3.11.1", 19 | "react": "^17.0.2", 20 | "react-dom": "^17.0.2" 21 | } 22 | } 23 | --------------------------------------------------------------------------------