2017-07-11 15:37:43 +00:00
|
|
|
import React from 'react';
|
2018-02-23 16:31:41 +00:00
|
|
|
import { Helmet } from 'react-helmet';
|
2017-02-22 19:29:35 +00:00
|
|
|
|
2020-04-29 22:34:37 +00:00
|
|
|
import SquareLogoIcon from '../../../images/p5js-square-logo.svg';
|
|
|
|
// import PlayIcon from '../../../images/play.svg';
|
|
|
|
import AsteriskIcon from '../../../images/p5-asterisk.svg';
|
2016-08-22 16:35:59 +00:00
|
|
|
|
2017-07-11 15:37:43 +00:00
|
|
|
function About(props) {
|
|
|
|
return (
|
|
|
|
<div className="about__content">
|
2018-02-23 16:31:41 +00:00
|
|
|
<Helmet>
|
|
|
|
<title>p5.js Web Editor | About</title>
|
|
|
|
</Helmet>
|
2017-07-11 15:37:43 +00:00
|
|
|
<div className="about__content-column">
|
2020-05-05 23:03:58 +00:00
|
|
|
<SquareLogoIcon className="about__logo" role="img" aria-label="p5.js Logo" focusable="false" />
|
2018-02-15 19:43:32 +00:00
|
|
|
{/* Video button to hello p5 video page */}
|
|
|
|
{/* <p className="about__play-video">
|
2017-07-11 15:37:43 +00:00
|
|
|
<a
|
|
|
|
href="http://hello.p5js.org/"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2020-04-29 22:34:37 +00:00
|
|
|
<PlayIcon className="about__play-video-button" title="Play Hello Video" />
|
2017-07-11 15:37:43 +00:00
|
|
|
Play hello! video</a>
|
2018-02-15 19:43:32 +00:00
|
|
|
</p> */}
|
2017-07-11 15:37:43 +00:00
|
|
|
</div>
|
|
|
|
<div className="about__content-column">
|
|
|
|
<h3 className="about__content-column-title">New to p5.js?</h3>
|
|
|
|
<p className="about__content-column-list">
|
|
|
|
<a
|
|
|
|
href="https://p5js.org/examples/"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2020-05-05 23:03:58 +00:00
|
|
|
<AsteriskIcon className="about__content-column-asterisk" aria-hidden="true" focusable="false" />
|
2020-02-25 22:14:50 +00:00
|
|
|
Examples
|
2018-05-05 00:22:39 +00:00
|
|
|
</a>
|
2017-07-11 15:37:43 +00:00
|
|
|
</p>
|
|
|
|
<p className="about__content-column-list">
|
|
|
|
<a
|
2017-10-30 18:53:54 +00:00
|
|
|
href="https://p5js.org/learn/"
|
2017-07-11 15:37:43 +00:00
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2020-05-05 23:03:58 +00:00
|
|
|
<AsteriskIcon className="about__content-column-asterisk" aria-hidden="true" focusable="false" />
|
2020-02-25 22:14:50 +00:00
|
|
|
Learn
|
2018-05-05 00:22:39 +00:00
|
|
|
</a>
|
2017-07-11 15:37:43 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div className="about__content-column">
|
|
|
|
<h3 className="about__content-column-title">Resources</h3>
|
|
|
|
<p className="about__content-column-list">
|
|
|
|
<a
|
|
|
|
href="https://p5js.org/libraries/"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2020-05-05 23:03:58 +00:00
|
|
|
<AsteriskIcon className="about__content-column-asterisk" aria-hidden="true" focusable="false" />
|
2020-02-25 22:14:50 +00:00
|
|
|
Libraries
|
2018-05-05 00:22:39 +00:00
|
|
|
</a>
|
2017-07-11 15:37:43 +00:00
|
|
|
</p>
|
|
|
|
<p className="about__content-column-list">
|
|
|
|
<a
|
|
|
|
href="https://p5js.org/reference/"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2020-05-05 23:03:58 +00:00
|
|
|
<AsteriskIcon className="about__content-column-asterisk" aria-hidden="true" focusable="false" />
|
2020-02-25 22:14:50 +00:00
|
|
|
Reference
|
2018-05-05 00:22:39 +00:00
|
|
|
</a>
|
2017-07-11 15:37:43 +00:00
|
|
|
</p>
|
|
|
|
<p className="about__content-column-list">
|
|
|
|
<a
|
2018-08-20 16:25:48 +00:00
|
|
|
href="https://discourse.processing.org/"
|
2017-07-11 15:37:43 +00:00
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2020-05-05 23:03:58 +00:00
|
|
|
<AsteriskIcon className="about__content-column-asterisk" aria-hidden="true" focusable="false" />
|
2020-02-25 22:14:50 +00:00
|
|
|
Forum
|
2018-05-05 00:22:39 +00:00
|
|
|
</a>
|
2017-07-11 15:37:43 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div className="about__footer">
|
|
|
|
<p className="about__footer-list">
|
|
|
|
<a
|
|
|
|
href="https://github.com/processing/p5.js-web-editor"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
2018-05-05 00:22:39 +00:00
|
|
|
>Contribute
|
|
|
|
</a>
|
2017-07-11 15:37:43 +00:00
|
|
|
</p>
|
|
|
|
<p className="about__footer-list">
|
|
|
|
<a
|
|
|
|
href="https://github.com/processing/p5.js-web-editor/issues/new"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
2018-05-05 00:22:39 +00:00
|
|
|
>Report a bug
|
|
|
|
</a>
|
2017-07-11 15:37:43 +00:00
|
|
|
</p>
|
|
|
|
<p className="about__footer-list">
|
|
|
|
<a
|
|
|
|
href="https://twitter.com/p5xjs?lang=en"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
2018-05-05 00:22:39 +00:00
|
|
|
>Twitter
|
|
|
|
</a>
|
2017-07-11 15:37:43 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2016-08-22 16:35:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default About;
|