├── .babelrc ├── .gitattributes ├── .github └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .stylelintrc.json ├── .yarnrc.yml ├── README.md ├── app ├── components │ ├── Clickable │ │ ├── index.js │ │ └── tests │ │ │ ├── __snapshots__ │ │ │ └── index.test.js.snap │ │ │ └── index.test.js │ ├── ErrorState │ │ ├── index.js │ │ └── tests │ │ │ ├── __snapshots__ │ │ │ └── index.test.js.snap │ │ │ └── index.test.js │ ├── If │ │ ├── index.js │ │ └── tests │ │ │ ├── __snapshots__ │ │ │ └── index.test.js.snap │ │ │ └── index.test.js │ ├── Meta │ │ ├── index.js │ │ └── tests │ │ │ ├── __snapshots__ │ │ │ └── index.test.js.snap │ │ │ └── index.test.js │ ├── Recommended │ │ ├── index.js │ │ └── tests │ │ │ ├── __snapshots__ │ │ │ └── index.test.js.snap │ │ │ └── index.test.js │ ├── RepoList │ │ ├── index.js │ │ └── tests │ │ │ ├── __snapshots__ │ │ │ └── index.test.js.snap │ │ │ └── index.test.js │ ├── Text │ │ ├── index.js │ │ └── tests │ │ │ ├── __snapshots__ │ │ │ └── index.test.js.snap │ │ │ └── index.test.js │ ├── Title │ │ ├── index.js │ │ └── tests │ │ │ ├── __snapshots__ │ │ │ └── index.test.js.snap │ │ │ └── index.test.js │ └── styled │ │ ├── index.js │ │ ├── repos.js │ │ └── tests │ │ ├── __snapshots__ │ │ └── index.test.js.snap │ │ └── index.test.js ├── configureStore.js ├── containers │ ├── Info │ │ ├── index.js │ │ ├── reducer.js │ │ ├── saga.js │ │ ├── selectors.js │ │ └── tests │ │ │ ├── __snapshots__ │ │ │ └── index.test.js.snap │ │ │ ├── index.test.js │ │ │ ├── reducer.test.js │ │ │ ├── saga.test.js │ │ │ └── selectors.test.js │ └── Repos │ │ ├── index.js │ │ ├── reducer.js │ │ ├── saga.js │ │ ├── selectors.js │ │ └── tests │ │ ├── __snapshots__ │ │ └── index.test.js.snap │ │ ├── index.test.js │ │ ├── reducer.test.js │ │ ├── saga.test.js │ │ └── selectors.test.js ├── global-styles.js ├── i18n.js ├── images │ ├── favicon.ico │ └── ws-icon.png ├── lang │ └── en.json ├── reducers.js ├── services │ ├── info.js │ ├── repoApi.js │ ├── root.js │ └── tests │ │ ├── info.test.js │ │ ├── repoApi.test.js │ │ └── root.test.js ├── tests │ └── i18n.test.js ├── themes │ ├── colors.js │ ├── fonts.js │ ├── index.js │ ├── media.js │ ├── styles.js │ └── tests │ │ ├── colors.test.js │ │ ├── fonts.test.js │ │ ├── media.test.js │ │ └── styles.test.js └── utils │ ├── apiUtils.js │ ├── checkStore.js │ ├── constants.js │ ├── index.js │ ├── injectSaga.js │ ├── reducer.js │ ├── sagaInjectors.js │ ├── testUtils.js │ └── tests │ ├── checkStore.test.js │ ├── index.test.js │ ├── injectSaga.test.js │ └── sagaInjectors.test.js ├── config └── jest │ ├── cssTransform.js │ └── image.js ├── environments ├── .env.development ├── .env.production └── .env.qa ├── eslint.config.mjs ├── jest.config.js ├── jest.setup.js ├── jsconfig.json ├── next.config.js ├── package.json ├── pages ├── _app.js ├── _document.js ├── index.js └── info │ └── [name].js ├── polyfills.js ├── server └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/README.md -------------------------------------------------------------------------------- /app/components/Clickable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Clickable/index.js -------------------------------------------------------------------------------- /app/components/Clickable/tests/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Clickable/tests/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/components/Clickable/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Clickable/tests/index.test.js -------------------------------------------------------------------------------- /app/components/ErrorState/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/ErrorState/index.js -------------------------------------------------------------------------------- /app/components/ErrorState/tests/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/ErrorState/tests/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/components/ErrorState/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/ErrorState/tests/index.test.js -------------------------------------------------------------------------------- /app/components/If/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/If/index.js -------------------------------------------------------------------------------- /app/components/If/tests/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/If/tests/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/components/If/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/If/tests/index.test.js -------------------------------------------------------------------------------- /app/components/Meta/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Meta/index.js -------------------------------------------------------------------------------- /app/components/Meta/tests/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Meta/tests/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/components/Meta/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Meta/tests/index.test.js -------------------------------------------------------------------------------- /app/components/Recommended/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Recommended/index.js -------------------------------------------------------------------------------- /app/components/Recommended/tests/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Recommended/tests/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/components/Recommended/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Recommended/tests/index.test.js -------------------------------------------------------------------------------- /app/components/RepoList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/RepoList/index.js -------------------------------------------------------------------------------- /app/components/RepoList/tests/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/RepoList/tests/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/components/RepoList/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/RepoList/tests/index.test.js -------------------------------------------------------------------------------- /app/components/Text/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Text/index.js -------------------------------------------------------------------------------- /app/components/Text/tests/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Text/tests/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/components/Text/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Text/tests/index.test.js -------------------------------------------------------------------------------- /app/components/Title/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Title/index.js -------------------------------------------------------------------------------- /app/components/Title/tests/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Title/tests/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/components/Title/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/Title/tests/index.test.js -------------------------------------------------------------------------------- /app/components/styled/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/styled/index.js -------------------------------------------------------------------------------- /app/components/styled/repos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/styled/repos.js -------------------------------------------------------------------------------- /app/components/styled/tests/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/styled/tests/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/components/styled/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/components/styled/tests/index.test.js -------------------------------------------------------------------------------- /app/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/configureStore.js -------------------------------------------------------------------------------- /app/containers/Info/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Info/index.js -------------------------------------------------------------------------------- /app/containers/Info/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Info/reducer.js -------------------------------------------------------------------------------- /app/containers/Info/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Info/saga.js -------------------------------------------------------------------------------- /app/containers/Info/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Info/selectors.js -------------------------------------------------------------------------------- /app/containers/Info/tests/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Info/tests/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/containers/Info/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Info/tests/index.test.js -------------------------------------------------------------------------------- /app/containers/Info/tests/reducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Info/tests/reducer.test.js -------------------------------------------------------------------------------- /app/containers/Info/tests/saga.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Info/tests/saga.test.js -------------------------------------------------------------------------------- /app/containers/Info/tests/selectors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Info/tests/selectors.test.js -------------------------------------------------------------------------------- /app/containers/Repos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Repos/index.js -------------------------------------------------------------------------------- /app/containers/Repos/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Repos/reducer.js -------------------------------------------------------------------------------- /app/containers/Repos/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Repos/saga.js -------------------------------------------------------------------------------- /app/containers/Repos/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Repos/selectors.js -------------------------------------------------------------------------------- /app/containers/Repos/tests/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Repos/tests/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/containers/Repos/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Repos/tests/index.test.js -------------------------------------------------------------------------------- /app/containers/Repos/tests/reducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Repos/tests/reducer.test.js -------------------------------------------------------------------------------- /app/containers/Repos/tests/saga.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Repos/tests/saga.test.js -------------------------------------------------------------------------------- /app/containers/Repos/tests/selectors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/containers/Repos/tests/selectors.test.js -------------------------------------------------------------------------------- /app/global-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/global-styles.js -------------------------------------------------------------------------------- /app/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/i18n.js -------------------------------------------------------------------------------- /app/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/images/favicon.ico -------------------------------------------------------------------------------- /app/images/ws-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/images/ws-icon.png -------------------------------------------------------------------------------- /app/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/lang/en.json -------------------------------------------------------------------------------- /app/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/reducers.js -------------------------------------------------------------------------------- /app/services/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/services/info.js -------------------------------------------------------------------------------- /app/services/repoApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/services/repoApi.js -------------------------------------------------------------------------------- /app/services/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/services/root.js -------------------------------------------------------------------------------- /app/services/tests/info.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/services/tests/info.test.js -------------------------------------------------------------------------------- /app/services/tests/repoApi.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/services/tests/repoApi.test.js -------------------------------------------------------------------------------- /app/services/tests/root.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/services/tests/root.test.js -------------------------------------------------------------------------------- /app/tests/i18n.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/tests/i18n.test.js -------------------------------------------------------------------------------- /app/themes/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/themes/colors.js -------------------------------------------------------------------------------- /app/themes/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/themes/fonts.js -------------------------------------------------------------------------------- /app/themes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/themes/index.js -------------------------------------------------------------------------------- /app/themes/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/themes/media.js -------------------------------------------------------------------------------- /app/themes/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/themes/styles.js -------------------------------------------------------------------------------- /app/themes/tests/colors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/themes/tests/colors.test.js -------------------------------------------------------------------------------- /app/themes/tests/fonts.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/themes/tests/fonts.test.js -------------------------------------------------------------------------------- /app/themes/tests/media.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/themes/tests/media.test.js -------------------------------------------------------------------------------- /app/themes/tests/styles.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/themes/tests/styles.test.js -------------------------------------------------------------------------------- /app/utils/apiUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/utils/apiUtils.js -------------------------------------------------------------------------------- /app/utils/checkStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/utils/checkStore.js -------------------------------------------------------------------------------- /app/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/utils/constants.js -------------------------------------------------------------------------------- /app/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/utils/index.js -------------------------------------------------------------------------------- /app/utils/injectSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/utils/injectSaga.js -------------------------------------------------------------------------------- /app/utils/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/utils/reducer.js -------------------------------------------------------------------------------- /app/utils/sagaInjectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/utils/sagaInjectors.js -------------------------------------------------------------------------------- /app/utils/testUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/utils/testUtils.js -------------------------------------------------------------------------------- /app/utils/tests/checkStore.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/utils/tests/checkStore.test.js -------------------------------------------------------------------------------- /app/utils/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/utils/tests/index.test.js -------------------------------------------------------------------------------- /app/utils/tests/injectSaga.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/utils/tests/injectSaga.test.js -------------------------------------------------------------------------------- /app/utils/tests/sagaInjectors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/app/utils/tests/sagaInjectors.test.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/config/jest/image.js -------------------------------------------------------------------------------- /environments/.env.development: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_GITHUB_URL=https://api.github.com/ 2 | -------------------------------------------------------------------------------- /environments/.env.production: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_GITHUB_URL=https://api.github.com/ 2 | -------------------------------------------------------------------------------- /environments/.env.qa: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_GITHUB_URL=https://api.github.com/ 2 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/jest.setup.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/pages/_document.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/info/[name].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/pages/info/[name].js -------------------------------------------------------------------------------- /polyfills.js: -------------------------------------------------------------------------------- 1 | import '@webcomponents/shadydom'; 2 | -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/server/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wednesday-solutions/nextjs-template/HEAD/yarn.lock --------------------------------------------------------------------------------