Added API Skills and Other Skills Pages

This commit is contained in:
2018-03-18 14:44:00 +11:00
parent c638365642
commit 7daf798f17
6 changed files with 132 additions and 3 deletions

View File

@@ -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 {
<Route exact path="/about" component={AboutPage} />
<Route exact path="/about/programming" component={ProgrammingPage} />
<Route exact path="/about/api" component={APIPage} />
<Route exact path="/about/other" component={OtherSkillsPage} />
<Route exact path="/privacy-policy" component={PrivacyPolicyPage} />
<Route exact path="/privacy" component={PrivacyPolicyPage} />