├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── deploy.sh ├── next.config.js ├── package.json ├── postcss.config.js ├── src ├── components │ ├── Demo.tsx │ ├── Layout.tsx │ ├── ReactDemo.scss │ └── ReactDemo.tsx ├── htdocs │ └── robots.txt ├── lib │ ├── NextGoogleAnalytics.tsx │ ├── NextGoogleFont.tsx │ ├── NextHeadWithInlineCss.tsx │ └── NextPageMeta.tsx ├── pages │ ├── _document.tsx │ ├── credits.tsx │ └── index.tsx └── scss │ └── _style.scss └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "put here your deploy commands" 4 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/components/Demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/src/components/Demo.tsx -------------------------------------------------------------------------------- /src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/src/components/Layout.tsx -------------------------------------------------------------------------------- /src/components/ReactDemo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/src/components/ReactDemo.scss -------------------------------------------------------------------------------- /src/components/ReactDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/src/components/ReactDemo.tsx -------------------------------------------------------------------------------- /src/htdocs/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /src/lib/NextGoogleAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/src/lib/NextGoogleAnalytics.tsx -------------------------------------------------------------------------------- /src/lib/NextGoogleFont.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/src/lib/NextGoogleFont.tsx -------------------------------------------------------------------------------- /src/lib/NextHeadWithInlineCss.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/src/lib/NextHeadWithInlineCss.tsx -------------------------------------------------------------------------------- /src/lib/NextPageMeta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/src/lib/NextPageMeta.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/credits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/src/pages/credits.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/scss/_style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/src/scss/_style.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badpenguin/nextjs-static-generator-boilerplate/HEAD/tsconfig.json --------------------------------------------------------------------------------