2018-02-09 21:32:06 +00:00
|
|
|
import React from 'react';
|
2018-02-23 16:31:41 +00:00
|
|
|
import { Helmet } from 'react-helmet';
|
2020-04-29 22:34:37 +00:00
|
|
|
import GitHubLogo from '../../../images/github.svg';
|
2018-02-09 21:32:06 +00:00
|
|
|
|
|
|
|
function Feedback(props) {
|
|
|
|
return (
|
|
|
|
<div className="feedback__content">
|
2018-02-23 16:31:41 +00:00
|
|
|
<Helmet>
|
|
|
|
<title>p5.js Web Editor | Feedback</title>
|
|
|
|
</Helmet>
|
2018-02-09 21:32:06 +00:00
|
|
|
<div className="feedback__content-pane">
|
|
|
|
<h2 className="feedback__content-pane-header">
|
|
|
|
Via Github Issues
|
|
|
|
</h2>
|
|
|
|
<p className="feedback__content-pane-copy">
|
|
|
|
{'If you\'re familiar with Github, this is our preferred method for receiving bug reports and feedback.'}
|
|
|
|
</p>
|
|
|
|
<p className="feedback__content-pane-copy">
|
|
|
|
<a
|
2018-02-09 22:55:33 +00:00
|
|
|
href="https://github.com/processing/p5.js-web-editor/issues/new"
|
2018-02-09 21:32:06 +00:00
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
className="feedback__github-link"
|
|
|
|
>
|
|
|
|
Go to Github
|
2020-05-05 23:03:58 +00:00
|
|
|
<GitHubLogo className="feedback__github-logo" focusable="false" aria-hidden="true" />
|
2018-02-09 21:32:06 +00:00
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div className="feedback__content-pane">
|
|
|
|
<h2 className="feedback__content-pane-header">
|
|
|
|
Via Google Form
|
|
|
|
</h2>
|
|
|
|
<p className="feedback__content-pane-copy">
|
|
|
|
You can also submit this quick form.
|
|
|
|
</p>
|
|
|
|
<p className="feedback__content-pane-copy">
|
|
|
|
<a
|
|
|
|
href="https://docs.google.com/forms/d/e/1FAIpQLSexU8W2EIhXjktl-_XzwjH6vgnelHirH4Yn4liN5BXltPWqBg/viewform"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
2018-05-05 00:22:39 +00:00
|
|
|
>Go to Form
|
|
|
|
</a>
|
2018-02-09 21:32:06 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Feedback;
|