Linked about pages.
This commit is contained in:
@ -20,6 +20,9 @@ import Language from './../../language/Language';
|
||||
const MenuItems = {
|
||||
"navbar.contact.title": {
|
||||
"navbar.contact.about": "/about",
|
||||
"navbar.contact.programming": "/about/programming",
|
||||
"navbar.contact.api": "/about/api",
|
||||
"navbar.contact.other": "/about/other",
|
||||
"navbar.contact.contact": "/contact"
|
||||
},
|
||||
"navbar.legal.title": {
|
||||
|
@ -15,7 +15,7 @@ import { connect } from 'react-redux';
|
||||
import Language from './../../language/Language';
|
||||
|
||||
import Page from './../Page';
|
||||
import BlankPromo from './../sections/BlankPromo';
|
||||
import Poly from './../sections/Poly';
|
||||
import BodySection from './../sections/BodySection';
|
||||
import SplitSection from './../sections/SplitSection';
|
||||
import VideoTitle from './../title/VideoTitle';
|
||||
@ -35,7 +35,7 @@ class AboutPage extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<Page className="c-page--style-about">
|
||||
<BlankPromo />
|
||||
<Poly />
|
||||
|
||||
{/* Bio */}
|
||||
<SplitSection
|
||||
|
@ -31,11 +31,12 @@ class ContactPage extends React.Component {
|
||||
<PhoneSection />
|
||||
<BodySection>
|
||||
<h1>{Language.get("contact.form.title")}</h1>
|
||||
<p>
|
||||
{Language.get("contact.form.info")}
|
||||
</p>
|
||||
<div className="c-page--style-container__split">
|
||||
<p className="c-page--style-container__split-part">
|
||||
{Language.get("contact.form.info")}
|
||||
</p>
|
||||
<ContactForm className="c-page--style-container__split-part" />
|
||||
<div className="c-page--style-container__split-part"></div>
|
||||
</div>
|
||||
</BodySection>
|
||||
</Page>
|
||||
|
@ -13,7 +13,7 @@ import { connect } from 'react-redux';
|
||||
import Language from './../../../language/Language';
|
||||
|
||||
import Page from './../../Page';
|
||||
import BlankPromo from './../../sections/BlankPromo';
|
||||
import Poly from './../../sections/Poly';
|
||||
import BodySection from './../../sections/BodySection';
|
||||
import VideoTitle from './../../title/VideoTitle';
|
||||
import SkillBox from './SkillBox';
|
||||
@ -28,7 +28,7 @@ class APIPage extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<Page className="c-page--style-api-skills">
|
||||
<BlankPromo />
|
||||
<Poly />
|
||||
|
||||
<BodySection
|
||||
title={
|
||||
|
@ -13,7 +13,7 @@ import { connect } from 'react-redux';
|
||||
import Language from './../../../language/Language';
|
||||
|
||||
import Page from './../../Page';
|
||||
import BlankPromo from './../../sections/BlankPromo';
|
||||
import Poly from './../../sections/Poly';
|
||||
import BodySection from './../../sections/BodySection';
|
||||
import VideoTitle from './../../title/VideoTitle';
|
||||
import SkillBox from './SkillBox';
|
||||
@ -28,7 +28,7 @@ class OtherSkillsPage extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<Page className="c-page--style-other-skills">
|
||||
<BlankPromo />
|
||||
<Poly />
|
||||
|
||||
<BodySection
|
||||
title={
|
||||
|
@ -13,7 +13,7 @@ import { connect } from 'react-redux';
|
||||
import Language from './../../../language/Language';
|
||||
|
||||
import Page from './../../Page';
|
||||
import BlankPromo from './../../sections/BlankPromo';
|
||||
import Poly from './../../sections/Poly';
|
||||
import BodySection from './../../sections/BodySection';
|
||||
import VideoTitle from './../../title/VideoTitle';
|
||||
import SkillBox from './SkillBox';
|
||||
@ -28,7 +28,7 @@ class ProgrammingPage extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<Page className="c-page--style-programming">
|
||||
<BlankPromo />
|
||||
<Poly />
|
||||
|
||||
<BodySection
|
||||
title={
|
||||
|
@ -5,6 +5,9 @@ module.exports = {
|
||||
"contact": {
|
||||
"title": "Get in Touch",
|
||||
"about": "About Me",
|
||||
"programming": "Programming Skills",
|
||||
"api": "APIs & Tools Skills",
|
||||
"other": "Other Skills",
|
||||
"contact": "Contact Me"
|
||||
},
|
||||
"legal": {
|
||||
@ -34,7 +37,15 @@ module.exports = {
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Lorem
|
||||
Some of my interests include; Programming, System Administration,
|
||||
Hardware Repair, Disco Music, Video Games, Livestreaming, Video
|
||||
Creation and editing, Voice Acting, Anime, Manga, Learning
|
||||
Japanese and more!
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Click one of the below headings to find out more about my
|
||||
skillsets.
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
@ -47,7 +58,9 @@ module.exports = {
|
||||
"apis": " ",
|
||||
|
||||
"other": "Beyond programming I have other skills in Computing Systems and " +
|
||||
"media."
|
||||
"media. Most of these skills are just hobbies but I have used them from " +
|
||||
"time to time in my daily work. The skills can also often transfer to " +
|
||||
"programming."
|
||||
},
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user