├── .eslintrc.json ├── .estlintignore ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── docs ├── components.md ├── getting-started.md └── usage.md ├── examples └── site-minimal │ ├── .gitignore │ ├── .prettierrc │ ├── LICENSE │ ├── README.md │ ├── content │ ├── album-1.jpg │ ├── album-2.jpg │ ├── album-3.jpg │ ├── artist-banner.jpg │ ├── artist-landing-page.mdx │ ├── artist-logotype.png │ ├── images │ │ └── favicon.png │ ├── releases.yml │ └── shows.yml │ ├── gatsby-config.js │ ├── package.json │ ├── src │ └── gatsby-theme-musician │ │ └── config │ │ ├── artist.yml │ │ ├── navigation.yml │ │ └── text_labels.yml │ └── yarn.lock ├── package.json ├── screenshot_large.png ├── screenshot_with_bg.png ├── theme ├── README.md ├── content │ ├── artist-landing-page.mdx │ ├── images │ │ ├── favicon.png │ │ └── placeholder.jpg │ ├── releases.yml │ ├── sample-page.mdx │ └── shows.yml ├── gatsby-config.js ├── gatsby-node.js ├── index.js ├── node_modules │ ├── .bin │ │ ├── gatsby │ │ └── mkdirp │ └── fs-extra │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ ├── copy-sync │ │ │ ├── copy-sync.js │ │ │ └── index.js │ │ ├── copy │ │ │ ├── copy.js │ │ │ └── index.js │ │ ├── empty │ │ │ └── index.js │ │ ├── ensure │ │ │ ├── file.js │ │ │ ├── index.js │ │ │ ├── link.js │ │ │ ├── symlink-paths.js │ │ │ ├── symlink-type.js │ │ │ └── symlink.js │ │ ├── fs │ │ │ └── index.js │ │ ├── index.js │ │ ├── json │ │ │ ├── index.js │ │ │ ├── jsonfile.js │ │ │ ├── output-json-sync.js │ │ │ └── output-json.js │ │ ├── mkdirs │ │ │ ├── index.js │ │ │ ├── mkdirs-sync.js │ │ │ ├── mkdirs.js │ │ │ └── win32.js │ │ ├── move-sync │ │ │ ├── index.js │ │ │ └── move-sync.js │ │ ├── move │ │ │ ├── index.js │ │ │ └── move.js │ │ ├── output │ │ │ └── index.js │ │ ├── path-exists │ │ │ └── index.js │ │ ├── remove │ │ │ ├── index.js │ │ │ └── rimraf.js │ │ └── util │ │ │ ├── buffer.js │ │ │ ├── stat.js │ │ │ └── utimes.js │ │ └── package.json ├── package.json └── src │ ├── components │ ├── banner.js │ ├── container.js │ ├── footer.js │ ├── grids.js │ ├── header.js │ ├── hero-image.js │ ├── icon-by-name.js │ ├── icon-link.js │ ├── img-wrapper.js │ ├── index.js │ ├── landing-section-title.js │ ├── layout.js │ ├── mdx-link.js │ ├── mdx-wrapper.js │ ├── nav-link.js │ ├── release-item.js │ ├── releases.js │ ├── seo.js │ ├── show-item.js │ ├── shows.js │ ├── skip-link.js │ ├── social.js │ └── youtube.js │ ├── config │ ├── artist.yml │ ├── navigation.yml │ └── text_labels.yml │ ├── gatsby-plugin-theme-ui │ ├── breakpoints.js │ ├── colors.js │ ├── componentStyles.js │ ├── elementStyles.js │ ├── helpers.js │ ├── index.js │ ├── layoutStyles.js │ ├── spacing.js │ ├── textStyles.js │ └── typography.js │ ├── pages │ └── 404.js │ ├── templates │ ├── landing.js │ └── mdx-page.js │ └── use-site-metadata.js └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.estlintignore: -------------------------------------------------------------------------------- 1 | public 2 | static 3 | .cache 4 | content -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/README.md -------------------------------------------------------------------------------- /docs/components.md: -------------------------------------------------------------------------------- 1 | # Components 2 | 3 | 🚧 COMING SOON 🚧 4 | -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/docs/usage.md -------------------------------------------------------------------------------- /examples/site-minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/.gitignore -------------------------------------------------------------------------------- /examples/site-minimal/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/.prettierrc -------------------------------------------------------------------------------- /examples/site-minimal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/LICENSE -------------------------------------------------------------------------------- /examples/site-minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/README.md -------------------------------------------------------------------------------- /examples/site-minimal/content/album-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/content/album-1.jpg -------------------------------------------------------------------------------- /examples/site-minimal/content/album-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/content/album-2.jpg -------------------------------------------------------------------------------- /examples/site-minimal/content/album-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/content/album-3.jpg -------------------------------------------------------------------------------- /examples/site-minimal/content/artist-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/content/artist-banner.jpg -------------------------------------------------------------------------------- /examples/site-minimal/content/artist-landing-page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/content/artist-landing-page.mdx -------------------------------------------------------------------------------- /examples/site-minimal/content/artist-logotype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/content/artist-logotype.png -------------------------------------------------------------------------------- /examples/site-minimal/content/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/content/images/favicon.png -------------------------------------------------------------------------------- /examples/site-minimal/content/releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/content/releases.yml -------------------------------------------------------------------------------- /examples/site-minimal/content/shows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/content/shows.yml -------------------------------------------------------------------------------- /examples/site-minimal/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/gatsby-config.js -------------------------------------------------------------------------------- /examples/site-minimal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/package.json -------------------------------------------------------------------------------- /examples/site-minimal/src/gatsby-theme-musician/config/artist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/src/gatsby-theme-musician/config/artist.yml -------------------------------------------------------------------------------- /examples/site-minimal/src/gatsby-theme-musician/config/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/src/gatsby-theme-musician/config/navigation.yml -------------------------------------------------------------------------------- /examples/site-minimal/src/gatsby-theme-musician/config/text_labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/src/gatsby-theme-musician/config/text_labels.yml -------------------------------------------------------------------------------- /examples/site-minimal/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/examples/site-minimal/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/package.json -------------------------------------------------------------------------------- /screenshot_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/screenshot_large.png -------------------------------------------------------------------------------- /screenshot_with_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/screenshot_with_bg.png -------------------------------------------------------------------------------- /theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/README.md -------------------------------------------------------------------------------- /theme/content/artist-landing-page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/content/artist-landing-page.mdx -------------------------------------------------------------------------------- /theme/content/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/content/images/favicon.png -------------------------------------------------------------------------------- /theme/content/images/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/content/images/placeholder.jpg -------------------------------------------------------------------------------- /theme/content/releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/content/releases.yml -------------------------------------------------------------------------------- /theme/content/sample-page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/content/sample-page.mdx -------------------------------------------------------------------------------- /theme/content/shows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/content/shows.yml -------------------------------------------------------------------------------- /theme/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/gatsby-config.js -------------------------------------------------------------------------------- /theme/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/gatsby-node.js -------------------------------------------------------------------------------- /theme/index.js: -------------------------------------------------------------------------------- 1 | // Have a nice day! 2 | -------------------------------------------------------------------------------- /theme/node_modules/.bin/gatsby: -------------------------------------------------------------------------------- 1 | ../../../node_modules/gatsby/dist/bin/gatsby.js -------------------------------------------------------------------------------- /theme/node_modules/.bin/mkdirp: -------------------------------------------------------------------------------- 1 | ../../../node_modules/mkdirp/bin/cmd.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/CHANGELOG.md -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/LICENSE -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/README.md -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/copy-sync/copy-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/copy-sync/copy-sync.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/copy-sync/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/copy-sync/index.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/copy/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/copy/copy.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/copy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/copy/index.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/empty/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/empty/index.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/ensure/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/ensure/file.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/ensure/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/ensure/index.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/ensure/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/ensure/link.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/ensure/symlink-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/ensure/symlink-paths.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/ensure/symlink-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/ensure/symlink-type.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/ensure/symlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/ensure/symlink.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/fs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/fs/index.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/index.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/json/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/json/index.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/json/jsonfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/json/jsonfile.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/json/output-json-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/json/output-json-sync.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/json/output-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/json/output-json.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/mkdirs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/mkdirs/index.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/mkdirs/mkdirs-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/mkdirs/mkdirs-sync.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/mkdirs/mkdirs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/mkdirs/mkdirs.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/mkdirs/win32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/mkdirs/win32.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/move-sync/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/move-sync/index.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/move-sync/move-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/move-sync/move-sync.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/move/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/move/index.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/move/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/move/move.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/output/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/output/index.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/path-exists/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/path-exists/index.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/remove/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/remove/index.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/remove/rimraf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/remove/rimraf.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/util/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/util/buffer.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/util/stat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/util/stat.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/lib/util/utimes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/lib/util/utimes.js -------------------------------------------------------------------------------- /theme/node_modules/fs-extra/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/node_modules/fs-extra/package.json -------------------------------------------------------------------------------- /theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/package.json -------------------------------------------------------------------------------- /theme/src/components/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/banner.js -------------------------------------------------------------------------------- /theme/src/components/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/container.js -------------------------------------------------------------------------------- /theme/src/components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/footer.js -------------------------------------------------------------------------------- /theme/src/components/grids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/grids.js -------------------------------------------------------------------------------- /theme/src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/header.js -------------------------------------------------------------------------------- /theme/src/components/hero-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/hero-image.js -------------------------------------------------------------------------------- /theme/src/components/icon-by-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/icon-by-name.js -------------------------------------------------------------------------------- /theme/src/components/icon-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/icon-link.js -------------------------------------------------------------------------------- /theme/src/components/img-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/img-wrapper.js -------------------------------------------------------------------------------- /theme/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/index.js -------------------------------------------------------------------------------- /theme/src/components/landing-section-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/landing-section-title.js -------------------------------------------------------------------------------- /theme/src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/layout.js -------------------------------------------------------------------------------- /theme/src/components/mdx-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/mdx-link.js -------------------------------------------------------------------------------- /theme/src/components/mdx-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/mdx-wrapper.js -------------------------------------------------------------------------------- /theme/src/components/nav-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/nav-link.js -------------------------------------------------------------------------------- /theme/src/components/release-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/release-item.js -------------------------------------------------------------------------------- /theme/src/components/releases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/releases.js -------------------------------------------------------------------------------- /theme/src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/seo.js -------------------------------------------------------------------------------- /theme/src/components/show-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/show-item.js -------------------------------------------------------------------------------- /theme/src/components/shows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/shows.js -------------------------------------------------------------------------------- /theme/src/components/skip-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/skip-link.js -------------------------------------------------------------------------------- /theme/src/components/social.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/social.js -------------------------------------------------------------------------------- /theme/src/components/youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/components/youtube.js -------------------------------------------------------------------------------- /theme/src/config/artist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/config/artist.yml -------------------------------------------------------------------------------- /theme/src/config/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/config/navigation.yml -------------------------------------------------------------------------------- /theme/src/config/text_labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/config/text_labels.yml -------------------------------------------------------------------------------- /theme/src/gatsby-plugin-theme-ui/breakpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/gatsby-plugin-theme-ui/breakpoints.js -------------------------------------------------------------------------------- /theme/src/gatsby-plugin-theme-ui/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/gatsby-plugin-theme-ui/colors.js -------------------------------------------------------------------------------- /theme/src/gatsby-plugin-theme-ui/componentStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/gatsby-plugin-theme-ui/componentStyles.js -------------------------------------------------------------------------------- /theme/src/gatsby-plugin-theme-ui/elementStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/gatsby-plugin-theme-ui/elementStyles.js -------------------------------------------------------------------------------- /theme/src/gatsby-plugin-theme-ui/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/gatsby-plugin-theme-ui/helpers.js -------------------------------------------------------------------------------- /theme/src/gatsby-plugin-theme-ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/gatsby-plugin-theme-ui/index.js -------------------------------------------------------------------------------- /theme/src/gatsby-plugin-theme-ui/layoutStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/gatsby-plugin-theme-ui/layoutStyles.js -------------------------------------------------------------------------------- /theme/src/gatsby-plugin-theme-ui/spacing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/gatsby-plugin-theme-ui/spacing.js -------------------------------------------------------------------------------- /theme/src/gatsby-plugin-theme-ui/textStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/gatsby-plugin-theme-ui/textStyles.js -------------------------------------------------------------------------------- /theme/src/gatsby-plugin-theme-ui/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/gatsby-plugin-theme-ui/typography.js -------------------------------------------------------------------------------- /theme/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/pages/404.js -------------------------------------------------------------------------------- /theme/src/templates/landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/templates/landing.js -------------------------------------------------------------------------------- /theme/src/templates/mdx-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/templates/mdx-page.js -------------------------------------------------------------------------------- /theme/src/use-site-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/theme/src/use-site-metadata.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekafyi/gatsby-theme-musician/HEAD/yarn.lock --------------------------------------------------------------------------------