diff --git a/public/page/about/AboutPage.jsx b/public/page/about/AboutPage.jsx index b2500ae..033bf45 100644 --- a/public/page/about/AboutPage.jsx +++ b/public/page/about/AboutPage.jsx @@ -22,15 +22,56 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. import React from 'react'; +import { connect } from 'react-redux'; +import Language from './../../language/Language'; import Page, { PageBoundary } from './../Page'; -import Section, { ImageSection } from './../../section/Section'; -import ClearSection from './../../section/layout/ClearSection'; +import Section, { ImageSection, VideoSection, SplitSection, Split } from './../../section/Section'; +import FloatingContentBox from './../../content/FloatingContentBox'; +import Image from './../../image/Image'; +import Video from './../../video/Video'; +import { Title, Subtitle } from './../../typography/Typography'; -export default function() { +const AboutPage = (props) => { return ( - - - Test + + + { /* Banner */ } + + + + { Language.get("pages.about.banner.title") } + { Language.get("pages.about.banner.subtitle") } + + + + + { /* Promo Video */ } +
+ + + + + + + Right Side + + + +
); } + +const mapStateToProps = (state) => { + return { + code: state.language.code + }; +} + +export default connect(mapStateToProps)(AboutPage);