diff --git a/public/App.jsx b/public/App.jsx index 5ef46c0..fdaba62 100644 --- a/public/App.jsx +++ b/public/App.jsx @@ -20,6 +20,8 @@ import IndexPage from './components/pages/IndexPage'; import AboutPage from './components/pages/AboutPage'; import ProgrammingPage from './components/pages/about/ProgrammingPage'; +import APIPage from './components/pages/about/APIPage'; +import OtherSkillsPage from './components/pages/about/OtherSkillsPage'; import PrivacyPolicyPage from './components/pages/PrivacyPolicyPage'; @@ -42,6 +44,8 @@ class App extends React.Component { + + diff --git a/public/components/pages/AboutPage.jsx b/public/components/pages/AboutPage.jsx index d76831f..5b44cd5 100644 --- a/public/components/pages/AboutPage.jsx +++ b/public/components/pages/AboutPage.jsx @@ -69,8 +69,8 @@ class AboutPage extends React.Component { {/* Programming */} , - , - + , + ]}> ); diff --git a/public/components/pages/about/APIPage.jsx b/public/components/pages/about/APIPage.jsx new file mode 100644 index 0000000..bb40398 --- /dev/null +++ b/public/components/pages/about/APIPage.jsx @@ -0,0 +1,64 @@ +/* + * API Page + * About that one lad. + * + * Dependencies: + * + * 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 BlankPromo from './../../sections/BlankPromo'; +import BodySection from './../../sections/BodySection'; +import VideoTitle from './../../title/VideoTitle'; +import SkillBox from './SkillBox'; + +import apiMP4 from './../../../videos/about/api.mp4'; + +class APIPage extends React.Component { + constructor(props) { + super(props); + } + + render() { + return ( + + + + + } + > +

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

+ +
+ + + + + + + + + +
+
+
+ ); + } +} + +const mapStateToProps = function(state) { + return { + code: state.language.code + } +} +export default connect(mapStateToProps)(APIPage); diff --git a/public/components/pages/about/OtherSkillsPage.jsx b/public/components/pages/about/OtherSkillsPage.jsx new file mode 100644 index 0000000..8b8d1fc --- /dev/null +++ b/public/components/pages/about/OtherSkillsPage.jsx @@ -0,0 +1,60 @@ +/* + * Other Skills Page + * About that one lad. + * + * Dependencies: + * + * 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 BlankPromo from './../../sections/BlankPromo'; +import BodySection from './../../sections/BodySection'; +import VideoTitle from './../../title/VideoTitle'; +import SkillBox from './SkillBox'; + +import otherMP4 from './../../../videos/about/other.mp4'; + +class OtherSkillsPage extends React.Component { + constructor(props) { + super(props); + } + + render() { + return ( + + + + + } + > +

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

+ +
+ + + + + +
+
+
+ ); + } +} + +const mapStateToProps = function(state) { + return { + code: state.language.code + } +} +export default connect(mapStateToProps)(OtherSkillsPage); diff --git a/public/components/pages/about/ProgrammingPage.jsx b/public/components/pages/about/ProgrammingPage.jsx index 042fc3f..a90e274 100644 --- a/public/components/pages/about/ProgrammingPage.jsx +++ b/public/components/pages/about/ProgrammingPage.jsx @@ -3,7 +3,6 @@ * About that one lad. * * Dependencies: - * styles/components/_page--style-about.scss * * Version: * 1.0.0 - 2018/03/18 diff --git a/public/language/en-AU.jsx b/public/language/en-AU.jsx index 2c7a817..bbf64d0 100644 --- a/public/language/en-AU.jsx +++ b/public/language/en-AU.jsx @@ -44,6 +44,8 @@ module.exports = { "skillset every day. I am fluent in many computing technologies and "+ "languages. Below are just some of the languages I'm fluent in.", + "apis": " ", + "other": "Beyond programming I have other skills in Computing Systems and " + "media." },