Skip to content

Commit 04bbbbc

Browse files
author
David Silva
committed
Linked to the /open-source page in /about
1 parent a61efcf commit 04bbbbc

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/containers/about/index.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import corgiImg from '../../assets/images/team/corginson.png';
99
import sydneyImg from '../../assets/images/team/sydney.png';
1010
import { Helmet } from 'react-helmet';
1111
import TeamMember from '../../components/about/TeamMember';
12+
import { Link } from 'react-router-dom';
1213

1314
class About extends React.Component {
1415
render() {
@@ -36,7 +37,8 @@ class About extends React.Component {
3637
<div className="col-sm-6 inner-right-xs inner-bottom-xs">
3738
<h2>Our Mission</h2>
3839
<p>
39-
Codecorgi is an an open source platform to practice coding with non trivial
40+
Codecorgi is an an <Link to="/about/open-source">open source </Link>
41+
platform to practice coding with non trivial
4042
codebases on your own terms, for front-end developers. Showcase your code
4143
and experience. Codecorgi's vision is to help devs advance their career by providing
4244
continuous training and project experience. To help them get over the barrier
@@ -64,7 +66,7 @@ class About extends React.Component {
6466
new features you want.
6567
</p>
6668
<p>
67-
<a href="https://github.com/corgicode/frontend-react" target="_blank">Check us out on github</a>
69+
<Link to="/about/open-source">Learn More</Link>
6870
</p>
6971
<h2>Zero bad vibes</h2>
7072
<p>
@@ -75,6 +77,9 @@ class About extends React.Component {
7577
collaborators and learning
7678
together.
7779
</p>
80+
<p><a href="https://github.com/corgicode/frontend-react/blob/dev/CODE_OF_CONDUCT.md" target="_blank">
81+
Check out our code of conduct
82+
</a></p>
7883
</div>
7984
</div>
8085
</div>

src/routes.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React from 'react';
22
import { Route, Switch } from 'react-router-dom';
33
import Home from './containers/home';
44
import About from './containers/about';
5+
import WeAreOpenSource from './containers/about/openSource';
56
import Profile from './containers/profile';
67
import e404 from './containers/404';
78
import ProfileEdit from './containers/profile/Edit';
@@ -19,6 +20,7 @@ class Routes extends React.Component {
1920
return(
2021
<Switch>
2122
<Route exact path="/" component={ Home } />
23+
<Route path="/about/open-source" component={ WeAreOpenSource } />
2224
<Route path="/about" component={ About } />
2325
<Route path="/signup" component={ Signup } />
2426
<Route path="/learning" component={ LearningPageContainer } />

0 commit comments

Comments
 (0)