unclutter the intro page (#64)

* removed cover.scss
* uncluttered intro

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2020-05-24 23:58:09 +02:00 committed by GitHub
parent 9d834f97d0
commit f185c76c6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 100 additions and 476 deletions

View file

@ -0,0 +1,37 @@
import {Col, Row} from "react-bootstrap";
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
import {Trans, useTranslation} from "react-i18next";
import React from "react";
import { Link } from "react-router-dom";
export const FeatureLinks: React.FC = () => {
useTranslation();
return (
<Row className="mb-5">
<Col md={4}>
<Link to={"/features#Share-Notes"} className="text-light">
<FontAwesomeIcon icon="bolt" size="3x"/>
<h5>
<Trans i18nKey="featureCollaboration"/>
</h5>
</Link>
</Col>
<Col md={4}>
<Link to={"/features#MathJax"} className="text-light">
<FontAwesomeIcon icon="chart-bar" size="3x"/>
<h5>
<Trans i18nKey="featureMathJax"/>
</h5>
</Link>
</Col>
<Col md={4}>
<Link to={"/features#Slide-Mode"} className="text-light">
<FontAwesomeIcon icon="tv" size="3x"/>
<h5>
<Trans i18nKey="featureSlides"/>
</h5>
</Link>
</Col>
</Row>
);
}