├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gatsby ├── gatsby-browser.ts ├── gatsby-config.ts ├── gatsby-node.ts └── gatsby-ssr.ts ├── .github ├── disabled │ └── lighthouse-ci.yml ├── labeler.yml ├── labels.yml ├── release-drafter.yml └── workflows │ ├── gh-pages.yml │ ├── labeler.yml │ ├── labels.yml │ ├── lint.yml │ ├── release-drafter.yml │ └── reviewdog.yml ├── .gitignore ├── .prettierrc ├── .stylelintrc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── banner.png └── icon.png ├── gatsby-config.js ├── netlify.toml ├── package.json ├── renovate.json ├── src ├── components │ ├── any-image.tsx │ ├── index.tsx │ ├── netlify-form.tsx │ ├── seo.tsx │ ├── wrap-page-element.tsx │ └── wrap-root-element.tsx ├── hooks │ ├── index.ts │ ├── use-any-image.ts │ ├── use-delay.ts │ ├── use-site-buildtime.ts │ └── use-site-metadata.ts ├── internal │ └── about.mdx ├── layouts │ ├── Footer │ │ └── index.tsx │ ├── Header │ │ ├── index.tsx │ │ └── mode-button.tsx │ └── index.tsx ├── pages │ ├── 404.tsx │ ├── about.tsx │ ├── contact.tsx │ └── index.tsx ├── store │ ├── index.ts │ └── switch-container.ts ├── styles │ ├── base-style.ts │ ├── index.ts │ └── static-global.scss └── types │ ├── image.d.ts │ ├── index.d.ts │ └── mdx.d.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gatsby/gatsby-browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.gatsby/gatsby-browser.ts -------------------------------------------------------------------------------- /.gatsby/gatsby-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.gatsby/gatsby-config.ts -------------------------------------------------------------------------------- /.gatsby/gatsby-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.gatsby/gatsby-node.ts -------------------------------------------------------------------------------- /.gatsby/gatsby-ssr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.gatsby/gatsby-ssr.ts -------------------------------------------------------------------------------- /.github/disabled/lighthouse-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.github/disabled/lighthouse-ci.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/reviewdog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.github/workflows/reviewdog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/assets/icon.png -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@hpprc:maintenance"] 3 | } 4 | -------------------------------------------------------------------------------- /src/components/any-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/components/any-image.tsx -------------------------------------------------------------------------------- /src/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/components/index.tsx -------------------------------------------------------------------------------- /src/components/netlify-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/components/netlify-form.tsx -------------------------------------------------------------------------------- /src/components/seo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/components/seo.tsx -------------------------------------------------------------------------------- /src/components/wrap-page-element.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/components/wrap-page-element.tsx -------------------------------------------------------------------------------- /src/components/wrap-root-element.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/components/wrap-root-element.tsx -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/use-any-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/hooks/use-any-image.ts -------------------------------------------------------------------------------- /src/hooks/use-delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/hooks/use-delay.ts -------------------------------------------------------------------------------- /src/hooks/use-site-buildtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/hooks/use-site-buildtime.ts -------------------------------------------------------------------------------- /src/hooks/use-site-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/hooks/use-site-metadata.ts -------------------------------------------------------------------------------- /src/internal/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/internal/about.mdx -------------------------------------------------------------------------------- /src/layouts/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/layouts/Footer/index.tsx -------------------------------------------------------------------------------- /src/layouts/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/layouts/Header/index.tsx -------------------------------------------------------------------------------- /src/layouts/Header/mode-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/layouts/Header/mode-button.tsx -------------------------------------------------------------------------------- /src/layouts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/layouts/index.tsx -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/pages/about.tsx -------------------------------------------------------------------------------- /src/pages/contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/pages/contact.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/switch-container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/store/switch-container.ts -------------------------------------------------------------------------------- /src/styles/base-style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/styles/base-style.ts -------------------------------------------------------------------------------- /src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/styles/index.ts -------------------------------------------------------------------------------- /src/styles/static-global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/styles/static-global.scss -------------------------------------------------------------------------------- /src/types/image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/types/image.d.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /src/types/mdx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/src/types/mdx.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/gatsby-starter-hpp/HEAD/yarn.lock --------------------------------------------------------------------------------