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