├── .gitignore ├── LICENSE ├── README.md ├── components ├── Footer.js ├── Footer.module.css └── Header.js ├── jsconfig.json ├── netlify.toml ├── next.config.js ├── package.json ├── pages ├── _app.js └── index.js ├── public ├── favicon.ico └── logo-netlify.svg ├── renovate.json └── styles └── globals.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/README.md -------------------------------------------------------------------------------- /components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/components/Footer.js -------------------------------------------------------------------------------- /components/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/components/Footer.module.css -------------------------------------------------------------------------------- /components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/components/Header.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/jsconfig.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/netlify.toml -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/pages/index.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo-netlify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/public/logo-netlify.svg -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/renovate.json -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-netlify-starter/HEAD/styles/globals.css --------------------------------------------------------------------------------