2023-09-22 18:05:13 -04:00
|
|
|
/*
|
2024-09-06 10:22:13 +02:00
|
|
|
Copyright 2023, 2024 New Vector Ltd.
|
2023-09-22 18:05:13 -04:00
|
|
|
|
2025-02-18 17:59:58 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-06 10:22:13 +02:00
|
|
|
Please see LICENSE in the repository root for full details.
|
2023-09-22 18:05:13 -04:00
|
|
|
*/
|
|
|
|
|
|
2024-12-11 09:27:55 +00:00
|
|
|
import { type FC } from "react";
|
2023-03-13 18:40:16 -04:00
|
|
|
import { Trans } from "react-i18next";
|
|
|
|
|
|
2024-09-11 13:44:43 -04:00
|
|
|
import { ExternalLink } from "../button/Link";
|
2023-03-13 18:40:16 -04:00
|
|
|
|
|
|
|
|
export const AnalyticsNotice: FC = () => (
|
2023-11-20 13:00:43 +00:00
|
|
|
<Trans i18nKey="analytics_notice">
|
2023-03-13 18:40:16 -04:00
|
|
|
By participating in this beta, you consent to the collection of anonymous
|
|
|
|
|
data, which we use to improve the product. You can find more information
|
|
|
|
|
about which data we track in our{" "}
|
2024-09-11 13:44:43 -04:00
|
|
|
<ExternalLink href="https://element.io/privacy">
|
|
|
|
|
Privacy Policy
|
|
|
|
|
</ExternalLink>{" "}
|
|
|
|
|
and our{" "}
|
|
|
|
|
<ExternalLink href="https://element.io/cookie-policy">
|
|
|
|
|
Cookie Policy
|
|
|
|
|
</ExternalLink>
|
|
|
|
|
.
|
2023-03-13 18:40:16 -04:00
|
|
|
</Trans>
|
|
|
|
|
);
|