hedgedoc/src/components/landing/pages/intro/feature-links.tsx

38 lines
1.3 KiB
TypeScript
Raw Normal View History

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>
);
}