Skip to content

Commit

Permalink
Merge pull request #90 from gautamjajoo/GCI
Browse files Browse the repository at this point in the history
Added GCI in Contributing Section
  • Loading branch information
gupta-utkarsh committed Oct 12, 2018
2 parents 2ea77c6 + 695b48f commit a7ad742
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
12 changes: 12 additions & 0 deletions frontend/src/components/home/HomeBody.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const HomeBody = props => {
const GITHUB_IMAGE = require("../../images/github_logo.png");
const GITTER_IMAGE = require("../../images/gitter_logo.png");
const GSOC_LOGO = require("../../images/gsoc_logo.png");
const GCI_LOGO = require("../../images/gci_logo.png");
return (
<div className="cv-home-body">
<HomeAboutUs />
Expand All @@ -39,6 +40,17 @@ const HomeBody = props => {
/>
<p>GSoC</p>
</Link>
<Link
to="https://codein.withgoogle.com/archive/2017/organization/5692767623708672/"
target="_blank"
>
<img
className="cv-home-gihub-image"
src={GCI_LOGO}
alt="GCI Logo"
/>
<p>GCI</p>
</Link>
<Link to="https://github.com/Cloud-CV/" target="_blank">
<img
className="cv-home-gihub-image"
Expand Down
10 changes: 10 additions & 0 deletions frontend/src/components/navbar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ class Navbar extends Component {
"",
// "Projects",
"GSoC",
"GCI",
"Team",
"Contribute",
"Contact Us"
Expand All @@ -69,6 +70,15 @@ class Navbar extends Component {
</NavbarItem>
);
}
if (path === "GCI") {
return (
<NavbarItem active={false} key={path}>
<Link to="http://gci.cloudcv.org" target="_blank">
{path}
</Link>
</NavbarItem>
);
}
let active = path.toLowerCase() === firstPath;
let formattedPath = path.toLowerCase().replace(/ /g, "-");
return (
Expand Down
Binary file added frontend/src/images/gci_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a7ad742

Please sign in to comment.