2021-03-15 17:18:03 +00:00
|
|
|
import { Component } from "inferno";
|
|
|
|
import { Link } from "inferno-router";
|
2021-03-22 13:22:23 +00:00
|
|
|
import { i18n } from "../i18next";
|
2021-03-15 17:18:03 +00:00
|
|
|
|
|
|
|
export class LinkLine extends Component<any, any> {
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
}
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<>
|
2021-03-22 13:22:23 +00:00
|
|
|
<Link to="/join">{i18n.t("join")}</Link>
|
|
|
|
<Link to="/apps">{i18n.t("apps")}</Link>
|
|
|
|
<Link to="/sponsors">{i18n.t("sponsors")}</Link>
|
|
|
|
<a href="/docs/en/index.html">{i18n.t("docs")}</a>
|
|
|
|
<a
|
|
|
|
href="/docs/en/code_of_conduct.html"
|
|
|
|
title={i18n.t("code_of_conduct")}
|
|
|
|
>
|
|
|
|
{i18n.t("coc")}
|
2021-03-15 17:18:03 +00:00
|
|
|
</a>
|
2021-03-22 13:22:23 +00:00
|
|
|
<Link to="/contact">{i18n.t("contact")}</Link>
|
2021-03-15 17:18:03 +00:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|