2017-07-11 15:37:43 +00:00
|
|
|
import React from 'react';
|
2016-08-22 16:35:59 +00:00
|
|
|
import InlineSVG from 'react-inlinesvg';
|
2018-02-23 16:31:41 +00:00
|
|
|
import { Helmet } from 'react-helmet';
|
2017-02-22 19:29:35 +00:00
|
|
|
|
2017-01-06 18:14:39 +00:00
|
|
|
const squareLogoUrl = require('../../../images/p5js-square-logo.svg');
|
2018-02-26 20:05:02 +00:00
|
|
|
// const playUrl = require('../../../images/play.svg');
|
2017-01-06 18:14:39 +00:00
|
|
|
const asteriskUrl = require('../../../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">
|
|
|
|
<InlineSVG className="about__logo" src={squareLogoUrl} alt="p5js Square Logo" />
|
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"
|
|
|
|
>
|
|
|
|
<InlineSVG className="about__play-video-button" src={playUrl} alt="Play Hello Video" />
|
|
|
|
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"
|
|
|
|
>
|
|
|
|
<InlineSVG className="about__content-column-asterisk" src={asteriskUrl} alt="p5 asterisk" />
|
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"
|
|
|
|
>
|
|
|
|
<InlineSVG className="about__content-column-asterisk" src={asteriskUrl} alt="p5 asterisk" />
|
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"
|
|
|
|
>
|
|
|
|
<InlineSVG className="about__content-column-asterisk" src={asteriskUrl} alt="p5 asterisk" />
|
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"
|
|
|
|
>
|
|
|
|
<InlineSVG className="about__content-column-asterisk" src={asteriskUrl} alt="p5 asterisk" />
|
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"
|
|
|
|
>
|
|
|
|
<InlineSVG className="about__content-column-asterisk" src={asteriskUrl} alt="p5 asterisk" />
|
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;
|