Skip to content

Commit

Permalink
Removed old content
Browse files Browse the repository at this point in the history
  • Loading branch information
gupta-utkarsh committed Jul 29, 2017
1 parent ecc17c8 commit 800eda3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 41 deletions.
2 changes: 0 additions & 2 deletions frontend/src/components/home/HomeBody.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React from "react";
import { Link } from "react-router-dom";
import HomeAboutUs from "./homeBody/HomeAboutUs";
import HomeShowcase from "./homeBody/HomeShowcase";
import HomeNews from "./homeBody/HomeNews";
import HomeSponsors from "./homeBody/HomeSponsors";
import Button from "../common/Button";
Expand All @@ -15,7 +14,6 @@ const HomeBody = props => {
return (
<div className="cv-home-body">
<HomeAboutUs />
<HomeShowcase />
<HomeNews />
<div className="cv-home-projects cv-container">
<h4>{PROJECT_DESC}</h4>
Expand Down
29 changes: 0 additions & 29 deletions frontend/src/components/home/homeBody/HomeAboutUs.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,6 @@ const HomeAboutUs = props => {
const ABOUT_US_TITLE = "WHO WE ARE";
const ABOUT_US_DESC =
"CloudCV is a young open source cloud platform started in 2013 by students and faculty from Machine Learning and Perception Lab at Virginia Tech (now at Georgia Tech) with the aim to make AI research more reproducible. At CloudCV, we are building tools that enable researchers to build, compare and share start-of-the-algorithms. We believe that one shouldn't have to be an AI expert to have access to cutting edge vision algorithms. Likewise, researchers shouldn't have to worry about building a service around their deep learning models to showcase and share it with others.";
const PAPER_IMAGE = require("../../../images/arxiv_paper.jpg");
const PAPER_TITLE = "Arxiv Paper";
const PAPER_DESC = [
"@ARTICLE{CloudCV,",
"author = {Harsh Agrawal and Clint Solomon Mathialagan and Yash Goyal and Neelima Chavali and Prakriti Banik and Akrit Mohapatra and Ahmed Osman and Dhruv Batra},",
'title = "{CloudCV: Large Scale Distributed Computer Vision as a Cloud Service",',
"journal = {arXiv preprint arXiv:1506.04130},",
"year = {2015},",
"}"
];
return (
<div className="cv-home-about-us cv-container">
<div className="cv-home-card-container">
Expand All @@ -30,25 +20,6 @@ const HomeAboutUs = props => {
</p>
</Card>
</div>
<div className="cv-home-card-container cv-arxiv-paper-card-container">
<Card extraClass="cv-arxiv-paper-card" themeClass="cv-card-dark">
<div className="cv-arxiv-paper-image-container">
<Link to="http://arxiv.org/abs/1506.04130" target="_blank">
<img className="cv-arxiv-paper-image" src={PAPER_IMAGE} />
</Link>
</div>
<h1 className="cv-arxiv-paper-heading">
<Link to="http://arxiv.org/abs/1506.04130" target="_blank">
{PAPER_TITLE}
</Link>
</h1>
<p className="cv-arxiv-paper-desc">
{PAPER_DESC.map((string, index) => {
return <span key={index}>{string}<br /></span>;
})}
</p>
</Card>
</div>
</div>
);
};
Expand Down
17 changes: 7 additions & 10 deletions frontend/src/styles/partials/_home.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,28 +30,24 @@
}

.cv-home-body {
padding-top: 5*$gutter-width;

@media #{$bp-sm} {
padding-top: 12*$gutter-width;
}
padding: 5*$gutter-width 0;
}

.cv-home-about-us {
display: flex;
justify-content: space-between;
justify-content: center;;
align-items: center;
flex-wrap: wrap;
width: 100%;
margin: 5*$gutter-width 0 10*$gutter-width 0;
}

.cv-home-card-container {
width: 100%;
position: relative;
margin: 2*$gutter-width 0;
text-align: justify;

@media #{$bp-sm} {
width: 47%;
margin: 0 3%;
width: 95%;

&:first-child {
margin-left: 0;
Expand All @@ -67,6 +63,7 @@
position: absolute;
display: inline-block;
white-space: nowrap;
margin: 0 auto;

@media #{$bp-sm} {
top: -13rem;
Expand Down

0 comments on commit 800eda3

Please sign in to comment.