joinlemmy-site/src/shared/components/link-line.tsx

30 lines
848 B
TypeScript
Raw Normal View History

import { Component } from "inferno";
import { Link } from "inferno-router";
2021-03-31 19:23:58 +00:00
import { getDocsLanguage } from "../utils";
import { i18n } from "../i18next";
export class LinkLine extends Component<any, any> {
constructor(props: any, context: any) {
super(props, context);
}
render() {
return (
<>
2021-03-25 00:07:48 +00:00
<Link to="/instances">{i18n.t("join")}</Link>
<Link to="/apps">{i18n.t("apps")}</Link>
<Link to="/support">{i18n.t("support")}</Link>
2021-03-31 19:23:58 +00:00
<a href={`/docs/${getDocsLanguage(i18n.language)}/index.html`}>
{i18n.t("docs")}
</a>
<a
2021-03-31 19:23:58 +00:00
href={`/docs/${getDocsLanguage(i18n.language)}/code_of_conduct.html`}
title={i18n.t("code_of_conduct")}
>
{i18n.t("coc")}
</a>
<Link to="/contact">{i18n.t("contact")}</Link>
</>
);
}
}