├── .env.EXAMPLE ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── src ├── components │ ├── feedback-widget │ │ ├── buttons.js │ │ ├── feedback-form.js │ │ ├── feedback-widget.js │ │ ├── presets.js │ │ ├── question-mark-icon.js │ │ ├── rating-option.js │ │ ├── styled-elements.js │ │ ├── submit-error.js │ │ ├── submit-success.js │ │ └── widget-wrapper.js │ ├── header.js │ ├── image.js │ ├── layout.css │ ├── layout.js │ └── seo.js ├── images │ ├── gatsby-astronaut.png │ └── gatsby-icon.png └── pages │ ├── 404.js │ ├── index.js │ └── page-2.js └── yarn.lock /.env.EXAMPLE: -------------------------------------------------------------------------------- 1 | GATSBY_FEEDBACK_ENDPOINT= 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/package.json -------------------------------------------------------------------------------- /src/components/feedback-widget/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/components/feedback-widget/buttons.js -------------------------------------------------------------------------------- /src/components/feedback-widget/feedback-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/components/feedback-widget/feedback-form.js -------------------------------------------------------------------------------- /src/components/feedback-widget/feedback-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/components/feedback-widget/feedback-widget.js -------------------------------------------------------------------------------- /src/components/feedback-widget/presets.js: -------------------------------------------------------------------------------- 1 | export const breakpoints = { 2 | desktop: `1000px`, 3 | } 4 | -------------------------------------------------------------------------------- /src/components/feedback-widget/question-mark-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/components/feedback-widget/question-mark-icon.js -------------------------------------------------------------------------------- /src/components/feedback-widget/rating-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/components/feedback-widget/rating-option.js -------------------------------------------------------------------------------- /src/components/feedback-widget/styled-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/components/feedback-widget/styled-elements.js -------------------------------------------------------------------------------- /src/components/feedback-widget/submit-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/components/feedback-widget/submit-error.js -------------------------------------------------------------------------------- /src/components/feedback-widget/submit-success.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/components/feedback-widget/submit-success.js -------------------------------------------------------------------------------- /src/components/feedback-widget/widget-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/components/feedback-widget/widget-wrapper.js -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/components/image.js -------------------------------------------------------------------------------- /src/components/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/components/layout.css -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/components/seo.js -------------------------------------------------------------------------------- /src/images/gatsby-astronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/images/gatsby-astronaut.png -------------------------------------------------------------------------------- /src/images/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/images/gatsby-icon.png -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/page-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/src/pages/page-2.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlengstorf/gatsby-feedback-widget/HEAD/yarn.lock --------------------------------------------------------------------------------