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 (
p5.js Web Editor | About
{/* Video button to hello p5 video page */} {/*

Play hello! video

*/}

{t('NewP5')}

{t('Resources')}

{t('Contribute')}

{t('Report')}

Twitter

); } export default About;