├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gatsby-config.mjs ├── package.json ├── src ├── components │ ├── code.tsx │ ├── layout.tsx │ ├── mdx-components.tsx │ ├── seo.tsx │ └── table-of-contents.tsx ├── gatsby-plugin-theme-ui │ └── index.ts └── pages │ ├── index.mdx │ └── preview.mdx ├── static ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── banner.jpg ├── downloads │ ├── gatsby-themes-wallpaper.jpg │ └── logo.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── sounds │ └── through_the_gate.mp3 └── videos │ ├── themes_model.mp4 │ └── themes_model_poster.png ├── theme.js └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/gatsby-config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/package.json -------------------------------------------------------------------------------- /src/components/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/src/components/code.tsx -------------------------------------------------------------------------------- /src/components/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/src/components/layout.tsx -------------------------------------------------------------------------------- /src/components/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/src/components/mdx-components.tsx -------------------------------------------------------------------------------- /src/components/seo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/src/components/seo.tsx -------------------------------------------------------------------------------- /src/components/table-of-contents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/src/components/table-of-contents.tsx -------------------------------------------------------------------------------- /src/gatsby-plugin-theme-ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/src/gatsby-plugin-theme-ui/index.ts -------------------------------------------------------------------------------- /src/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/src/pages/index.mdx -------------------------------------------------------------------------------- /src/pages/preview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/src/pages/preview.mdx -------------------------------------------------------------------------------- /static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/static/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/static/banner.jpg -------------------------------------------------------------------------------- /static/downloads/gatsby-themes-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/static/downloads/gatsby-themes-wallpaper.jpg -------------------------------------------------------------------------------- /static/downloads/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/static/downloads/logo.png -------------------------------------------------------------------------------- /static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/static/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/static/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/sounds/through_the_gate.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/static/sounds/through_the_gate.mp3 -------------------------------------------------------------------------------- /static/videos/themes_model.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/static/videos/themes_model.mp4 -------------------------------------------------------------------------------- /static/videos/themes_model_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/static/videos/themes_model_poster.png -------------------------------------------------------------------------------- /theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/theme.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LekoArts/gatsby-starter-specimens/HEAD/tsconfig.json --------------------------------------------------------------------------------