├── .gitignore ├── README.md ├── components ├── FeedbackForm.js ├── FeedbackForm.module.css ├── Footer.js ├── Footer.module.css ├── Header.js ├── JokeBlock.js └── JokeBlock.module.css ├── cypress.config.js ├── cypress └── e2e │ └── basic.cy.js ├── jsconfig.json ├── netlify.toml ├── netlify └── functions │ ├── joke.js │ └── jokes.json ├── package.json ├── pages ├── _app.js ├── index.js └── success.js ├── public ├── favicon.ico └── netlify-monogram.svg ├── renovate.json └── styles └── globals.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/README.md -------------------------------------------------------------------------------- /components/FeedbackForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/components/FeedbackForm.js -------------------------------------------------------------------------------- /components/FeedbackForm.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/components/FeedbackForm.module.css -------------------------------------------------------------------------------- /components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/components/Footer.js -------------------------------------------------------------------------------- /components/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/components/Footer.module.css -------------------------------------------------------------------------------- /components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/components/Header.js -------------------------------------------------------------------------------- /components/JokeBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/components/JokeBlock.js -------------------------------------------------------------------------------- /components/JokeBlock.module.css: -------------------------------------------------------------------------------- 1 | .quote { 2 | border-left: 5px solid #ccc; 3 | padding: 0.5rem; 4 | } 5 | -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress/e2e/basic.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/cypress/e2e/basic.cy.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/jsconfig.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/netlify.toml -------------------------------------------------------------------------------- /netlify/functions/joke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/netlify/functions/joke.js -------------------------------------------------------------------------------- /netlify/functions/jokes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/netlify/functions/jokes.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/success.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/pages/success.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/netlify-monogram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/public/netlify-monogram.svg -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/renovate.json -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/nextjs-toolbox/HEAD/styles/globals.css --------------------------------------------------------------------------------