b05d1b1a02
* Branch with i18n functionality * Translation files with new entries * includes Loader in index.jsx * Uses WithTranslation In Nav * New Namespace * Shortcuts Modal Complete * Preferences complete * About overlay title translated
114 lines
3.8 KiB
JavaScript
114 lines
3.8 KiB
JavaScript
import React from 'react';
|
|
import { Helmet } from 'react-helmet';
|
|
import { useTranslation } from 'react-i18next';
|
|
import SquareLogoIcon from '../../../images/p5js-square-logo.svg';
|
|
// import PlayIcon from '../../../images/play.svg';
|
|
import AsteriskIcon from '../../../images/p5-asterisk.svg';
|
|
|
|
function About(props) {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<div className="about__content">
|
|
<Helmet>
|
|
<title>p5.js Web Editor | About </title>
|
|
</Helmet>
|
|
<div className="about__content-column">
|
|
<SquareLogoIcon className="about__logo" role="img" aria-label="p5.js Logo" focusable="false" />
|
|
{/* Video button to hello p5 video page */}
|
|
{/* <p className="about__play-video">
|
|
<a
|
|
href="http://hello.p5js.org/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<PlayIcon className="about__play-video-button" title="Play Hello Video" />
|
|
Play hello! video</a>
|
|
</p> */}
|
|
</div>
|
|
<div className="about__content-column">
|
|
<h3 className="about__content-column-title">{t('NewP5')}</h3>
|
|
<p className="about__content-column-list">
|
|
<a
|
|
href="https://p5js.org/examples/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<AsteriskIcon className="about__content-column-asterisk" aria-hidden="true" focusable="false" />
|
|
{t('Examples')}
|
|
</a>
|
|
</p>
|
|
<p className="about__content-column-list">
|
|
<a
|
|
href="https://p5js.org/learn/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<AsteriskIcon className="about__content-column-asterisk" aria-hidden="true" focusable="false" />
|
|
{t('Learn')}
|
|
</a>
|
|
</p>
|
|
</div>
|
|
<div className="about__content-column">
|
|
<h3 className="about__content-column-title">{t('Resources')}</h3>
|
|
<p className="about__content-column-list">
|
|
<a
|
|
href="https://p5js.org/libraries/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<AsteriskIcon className="about__content-column-asterisk" aria-hidden="true" focusable="false" />
|
|
{t('Libraries')}
|
|
</a>
|
|
</p>
|
|
<p className="about__content-column-list">
|
|
<a
|
|
href="https://p5js.org/reference/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<AsteriskIcon className="about__content-column-asterisk" aria-hidden="true" focusable="false" />
|
|
{t('Reference')}
|
|
</a>
|
|
</p>
|
|
<p className="about__content-column-list">
|
|
<a
|
|
href="https://discourse.processing.org/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<AsteriskIcon className="about__content-column-asterisk" aria-hidden="true" focusable="false" />
|
|
{t('Forum')}
|
|
</a>
|
|
</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"
|
|
>{t('Contribute')}
|
|
</a>
|
|
</p>
|
|
<p className="about__footer-list">
|
|
<a
|
|
href="https://github.com/processing/p5.js-web-editor/issues/new"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>{t('Report')}
|
|
</a>
|
|
</p>
|
|
<p className="about__footer-list">
|
|
<a
|
|
href="https://twitter.com/p5xjs?lang=en"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>Twitter
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default About;
|