/* * About Page * About that one lad. * * Dependencies: * styles/components/_page--style-about.scss * * Version: * 1.0.0 - 2018/03/18 */ import React from 'react'; import { connect } from 'react-redux'; import Language from './../../language/Language'; import Page from './../Page'; import Poly from './../sections/Poly'; import BodySection from './../sections/BodySection'; import SplitSection from './../sections/SplitSection'; import VideoTitle from './../title/VideoTitle'; import Window95 from './../w95/Window95'; import domsHead from './../../images/profile.png'; import aboutMP4 from './../../videos/about/about.mp4'; import programmingMP4 from './../../videos/about/programming.mp4'; import apiMP4 from './../../videos/about/api.mp4'; import otherMP4 from './../../videos/about/other.mp4'; class AboutPage extends React.Component { constructor(props) { super(props); } render() { return ( {/* Bio */} } right={

{ Language.get("about.descriptions.welcome") }

} rightClass="c-page--style-about__blurb" /> {/* About Me */} } > { Language.get("about.descriptions.me") } {/* Programming */} , , ]}>
); } } const mapStateToProps = function(state) { return { code: state.language.code } } export default connect(mapStateToProps)(AboutPage);