You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
618 B
25 lines
618 B
import React from 'react';
|
|
import { SUPPORT_REQUEST_LINK } from '../../../helpers/constants/common';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
|
|
const BetaHomeFooter = () => {
|
|
const t = useI18nContext();
|
|
|
|
return (
|
|
<>
|
|
<a href={SUPPORT_REQUEST_LINK} target="_blank" rel="noopener noreferrer">
|
|
{t('needHelpSubmitTicket')}
|
|
</a>{' '}
|
|
|{' '}
|
|
<a
|
|
href="https://community.metamask.io/c/metamask-beta"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{t('needHelpFeedback')}
|
|
</a>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default BetaHomeFooter;
|
|
|