├── .gitignore ├── LICENSE ├── README.md ├── gatsby-config.js ├── package.json └── src ├── images └── icon.png └── pages ├── 404.js └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .cache/ 3 | public 4 | .env 5 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-gatsby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-gatsby/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-gatsby/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-gatsby/HEAD/package.json -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-gatsby/HEAD/src/images/icon.png -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-gatsby/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinsta/hello-world-gatsby/HEAD/src/pages/index.js --------------------------------------------------------------------------------