forked from abner/for-legacy-web
30 lines
802 B
TypeScript
30 lines
802 B
TypeScript
import styles from "../Login.module.scss";
|
|
import { Text } from "preact-i18n";
|
|
|
|
export function Legal() {
|
|
return (
|
|
<span className={styles.footer}>
|
|
<a
|
|
href="https://revolt.chat/about"
|
|
target="_blank"
|
|
rel="noreferrer">
|
|
<Text id="general.about" />
|
|
</a>
|
|
·
|
|
<a
|
|
href="https://revolt.chat/terms"
|
|
target="_blank"
|
|
rel="noreferrer">
|
|
<Text id="general.tos" />
|
|
</a>
|
|
·
|
|
<a
|
|
href="https://revolt.chat/privacy"
|
|
target="_blank"
|
|
rel="noreferrer">
|
|
<Text id="general.privacy" />
|
|
</a>
|
|
</span>
|
|
);
|
|
}
|