diff --git a/src/App.js b/src/App.js index 4e34f13..98f4d24 100644 --- a/src/App.js +++ b/src/App.js @@ -6,7 +6,6 @@ import GetStarted from "./page/GetStarted"; import Documentation from "./page/Documentation"; import Principles from "./page/Principles"; import Contribute from "./page/Contribute"; -import Research from "./page/Research"; import Faq from "./page/Faq"; import {Container, Navbar, Nav, NavItem, NavLink, Row} from 'reactstrap'; import {Route} from "react-router"; @@ -97,10 +96,6 @@ class App extends Component { Documentation - - Research - - FAQ @@ -123,7 +118,6 @@ class App extends Component { - diff --git a/src/page/Documentation.js b/src/page/Documentation.js index 3e29e53..96d67af 100644 --- a/src/page/Documentation.js +++ b/src/page/Documentation.js @@ -7,7 +7,6 @@ import { FaStream } from 'react-icons/fa'; import { FaMicroblog } from 'react-icons/fa'; import { FaGitter } from 'react-icons/fa'; import { FaGithub } from 'react-icons/fa'; -import { MdSchool } from 'react-icons/md'; import { GoGraph } from 'react-icons/go'; class Documentation extends Component { @@ -68,19 +67,6 @@ class Documentation extends Component { - - - - - - - - Research Papers - - - - - diff --git a/src/page/Faq.js b/src/page/Faq.js index 46d1802..56506eb 100644 --- a/src/page/Faq.js +++ b/src/page/Faq.js @@ -627,7 +627,7 @@ class Faq extends Component { This sounds like vaporware. All big promises and no delivery. - The research, + The research, the code, and the performance. diff --git a/src/page/Research.js b/src/page/Research.js deleted file mode 100644 index 14b2c33..0000000 --- a/src/page/Research.js +++ /dev/null @@ -1,159 +0,0 @@ -import React, {Component} from 'react'; -import {Container} from "reactstrap"; - -class Research extends Component { - - componentDidMount() { - document.title = "Flix | Research"; - } - - render() { - return ( - -

Research

- -

- Research on Flix takes place at Aarhus - University and the University of Waterloo. -

- -

- Below is a selection of research papers published on Flix: -

- -

Talks

- - - -

Peer-Reviewed

- -
    - - - - - - - - - - - - - - - - - -
- -

Workshops

- -
    - -
- -

Theses

- -
    - -
- -

Media

- - - -
- ); - } -} - -class Paper extends Component { - render() { - return ( -
  • - {this.props.title} [{this.props.venue}] -
  • - ); - } -} - -export default Research;