├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── app ├── blobs │ ├── actions.js │ ├── editor.jsx │ ├── generator.js │ ├── list.jsx │ ├── new-shape.jsx │ ├── page.jsx │ └── renderer.jsx ├── classics │ └── page.jsx ├── edge │ ├── australia │ │ └── page.jsx │ ├── explainer.jsx │ ├── not-australia │ │ └── page.jsx │ └── page.jsx ├── image-cdn │ ├── image-with-size-overlay.jsx │ └── page.jsx ├── layout.jsx ├── middleware │ └── page.jsx ├── page.jsx ├── quotes │ └── random │ │ └── route.js ├── revalidation │ └── page.jsx └── routing │ └── page.jsx ├── components ├── alert.jsx ├── card.jsx ├── code-block.jsx ├── context-alert.jsx ├── feedback-form.jsx ├── footer.jsx ├── header.jsx ├── markdown.jsx ├── random-quote.jsx └── submit-button.jsx ├── data └── quotes.json ├── jsconfig.json ├── middleware.js ├── netlify.toml ├── netlify └── edge-functions │ └── rewrite.js ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── __forms.html ├── favicon.svg ├── images │ ├── corgi.jpg │ ├── github-mark-white.svg │ ├── grid-bg.svg │ ├── noise.png │ └── noise.svg └── netlify-logo.svg ├── renovate.json ├── styles └── globals.css └── utils.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/README.md -------------------------------------------------------------------------------- /app/blobs/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/blobs/actions.js -------------------------------------------------------------------------------- /app/blobs/editor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/blobs/editor.jsx -------------------------------------------------------------------------------- /app/blobs/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/blobs/generator.js -------------------------------------------------------------------------------- /app/blobs/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/blobs/list.jsx -------------------------------------------------------------------------------- /app/blobs/new-shape.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/blobs/new-shape.jsx -------------------------------------------------------------------------------- /app/blobs/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/blobs/page.jsx -------------------------------------------------------------------------------- /app/blobs/renderer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/blobs/renderer.jsx -------------------------------------------------------------------------------- /app/classics/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/classics/page.jsx -------------------------------------------------------------------------------- /app/edge/australia/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/edge/australia/page.jsx -------------------------------------------------------------------------------- /app/edge/explainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/edge/explainer.jsx -------------------------------------------------------------------------------- /app/edge/not-australia/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/edge/not-australia/page.jsx -------------------------------------------------------------------------------- /app/edge/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/edge/page.jsx -------------------------------------------------------------------------------- /app/image-cdn/image-with-size-overlay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/image-cdn/image-with-size-overlay.jsx -------------------------------------------------------------------------------- /app/image-cdn/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/image-cdn/page.jsx -------------------------------------------------------------------------------- /app/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/layout.jsx -------------------------------------------------------------------------------- /app/middleware/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/middleware/page.jsx -------------------------------------------------------------------------------- /app/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/page.jsx -------------------------------------------------------------------------------- /app/quotes/random/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/quotes/random/route.js -------------------------------------------------------------------------------- /app/revalidation/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/revalidation/page.jsx -------------------------------------------------------------------------------- /app/routing/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/app/routing/page.jsx -------------------------------------------------------------------------------- /components/alert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/components/alert.jsx -------------------------------------------------------------------------------- /components/card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/components/card.jsx -------------------------------------------------------------------------------- /components/code-block.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/components/code-block.jsx -------------------------------------------------------------------------------- /components/context-alert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/components/context-alert.jsx -------------------------------------------------------------------------------- /components/feedback-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/components/feedback-form.jsx -------------------------------------------------------------------------------- /components/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/components/footer.jsx -------------------------------------------------------------------------------- /components/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/components/header.jsx -------------------------------------------------------------------------------- /components/markdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/components/markdown.jsx -------------------------------------------------------------------------------- /components/random-quote.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/components/random-quote.jsx -------------------------------------------------------------------------------- /components/submit-button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/components/submit-button.jsx -------------------------------------------------------------------------------- /data/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/data/quotes.json -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/jsconfig.json -------------------------------------------------------------------------------- /middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/middleware.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/netlify.toml -------------------------------------------------------------------------------- /netlify/edge-functions/rewrite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/netlify/edge-functions/rewrite.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/__forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/public/__forms.html -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/images/corgi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/public/images/corgi.jpg -------------------------------------------------------------------------------- /public/images/github-mark-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/public/images/github-mark-white.svg -------------------------------------------------------------------------------- /public/images/grid-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/public/images/grid-bg.svg -------------------------------------------------------------------------------- /public/images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/public/images/noise.png -------------------------------------------------------------------------------- /public/images/noise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/public/images/noise.svg -------------------------------------------------------------------------------- /public/netlify-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/public/netlify-logo.svg -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/renovate.json -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/styles/globals.css -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netlify-templates/next-platform-starter/HEAD/utils.js --------------------------------------------------------------------------------