├── .circleci └── config.yml ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .prettierrc ├── content ├── about │ ├── about.json │ └── content.md ├── home │ ├── homepage.json │ └── intro.md └── images │ └── gallery │ ├── intersection-observer.jpg │ ├── page-transitions.jpg │ └── react-context.jpg ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── license.md ├── package.json ├── readme.md ├── scripts ├── favicons.js └── lighthouse.test.js ├── site-config.js ├── src ├── components │ ├── box │ │ ├── box.css.js │ │ └── box.js │ ├── gallery │ │ ├── gallery.css.js │ │ ├── gallery.js │ │ └── item │ │ │ ├── item.css.js │ │ │ └── item.js │ ├── head │ │ └── head.js │ ├── header │ │ ├── header.css.js │ │ ├── header.js │ │ └── nav │ │ │ ├── nav.css.js │ │ │ └── nav.js │ ├── io-example │ │ ├── io-example.css.js │ │ └── io-example.js │ ├── io │ │ └── io.js │ ├── layout │ │ ├── layout.css.js │ │ └── layout.js │ ├── modal │ │ ├── modal.css.js │ │ └── modal.js │ ├── title │ │ ├── title.css.js │ │ └── title.js │ └── transition │ │ └── transition.js ├── constants │ ├── breakpoints.js │ ├── theme.js │ └── transition.js ├── containers │ └── modal │ │ └── modal.js ├── global.css.js ├── helpers │ ├── mediaTemplates.js │ ├── schemaGenerator.js │ └── wrapPageElement.js ├── images │ └── icon.png ├── pages │ ├── 404.js │ ├── about.js │ └── index.js └── store │ ├── createContext.js │ └── provider.js ├── static ├── robots.txt └── social.png └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/.prettierrc -------------------------------------------------------------------------------- /content/about/about.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/content/about/about.json -------------------------------------------------------------------------------- /content/about/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/content/about/content.md -------------------------------------------------------------------------------- /content/home/homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/content/home/homepage.json -------------------------------------------------------------------------------- /content/home/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/content/home/intro.md -------------------------------------------------------------------------------- /content/images/gallery/intersection-observer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/content/images/gallery/intersection-observer.jpg -------------------------------------------------------------------------------- /content/images/gallery/page-transitions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/content/images/gallery/page-transitions.jpg -------------------------------------------------------------------------------- /content/images/gallery/react-context.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/content/images/gallery/react-context.jpg -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/favicons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/scripts/favicons.js -------------------------------------------------------------------------------- /scripts/lighthouse.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/scripts/lighthouse.test.js -------------------------------------------------------------------------------- /site-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/site-config.js -------------------------------------------------------------------------------- /src/components/box/box.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/box/box.css.js -------------------------------------------------------------------------------- /src/components/box/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/box/box.js -------------------------------------------------------------------------------- /src/components/gallery/gallery.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/gallery/gallery.css.js -------------------------------------------------------------------------------- /src/components/gallery/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/gallery/gallery.js -------------------------------------------------------------------------------- /src/components/gallery/item/item.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/gallery/item/item.css.js -------------------------------------------------------------------------------- /src/components/gallery/item/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/gallery/item/item.js -------------------------------------------------------------------------------- /src/components/head/head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/head/head.js -------------------------------------------------------------------------------- /src/components/header/header.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/header/header.css.js -------------------------------------------------------------------------------- /src/components/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/header/header.js -------------------------------------------------------------------------------- /src/components/header/nav/nav.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/header/nav/nav.css.js -------------------------------------------------------------------------------- /src/components/header/nav/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/header/nav/nav.js -------------------------------------------------------------------------------- /src/components/io-example/io-example.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/io-example/io-example.css.js -------------------------------------------------------------------------------- /src/components/io-example/io-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/io-example/io-example.js -------------------------------------------------------------------------------- /src/components/io/io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/io/io.js -------------------------------------------------------------------------------- /src/components/layout/layout.css.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/layout/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/layout/layout.js -------------------------------------------------------------------------------- /src/components/modal/modal.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/modal/modal.css.js -------------------------------------------------------------------------------- /src/components/modal/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/modal/modal.js -------------------------------------------------------------------------------- /src/components/title/title.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/title/title.css.js -------------------------------------------------------------------------------- /src/components/title/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/title/title.js -------------------------------------------------------------------------------- /src/components/transition/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/components/transition/transition.js -------------------------------------------------------------------------------- /src/constants/breakpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/constants/breakpoints.js -------------------------------------------------------------------------------- /src/constants/theme.js: -------------------------------------------------------------------------------- 1 | export const accent = '#f90000'; 2 | -------------------------------------------------------------------------------- /src/constants/transition.js: -------------------------------------------------------------------------------- 1 | export const timeout = 250; 2 | -------------------------------------------------------------------------------- /src/containers/modal/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/containers/modal/modal.js -------------------------------------------------------------------------------- /src/global.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/global.css.js -------------------------------------------------------------------------------- /src/helpers/mediaTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/helpers/mediaTemplates.js -------------------------------------------------------------------------------- /src/helpers/schemaGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/helpers/schemaGenerator.js -------------------------------------------------------------------------------- /src/helpers/wrapPageElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/helpers/wrapPageElement.js -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/images/icon.png -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/pages/about.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/store/createContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/store/createContext.js -------------------------------------------------------------------------------- /src/store/provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/src/store/provider.js -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/static/robots.txt -------------------------------------------------------------------------------- /static/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/static/social.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabe/gatsby-universal/HEAD/yarn.lock --------------------------------------------------------------------------------