import { ArrowRightOutlined } from '@ant-design/icons'; import { Button, Drawer, Space, Typography } from 'antd'; import React from 'react'; import { useTranslation } from 'react-i18next'; import { Icon } from 'UI'; const { Text } = Typography; interface Props { onClose: () => void; open: boolean; } function SupportModal(props: Props) { const { onClose, open } = props; const WEBSITE_ID = window.env.CRISP_KEY; const { t } = useTranslation(); return (
{t('Documentation')} {t( 'Deploy, manage and customize OpenReplay through quick starts, tutorials, samples, and guides.', )}
{t('Slack Community')} {t( 'Ask OpenReplay community and get quick resolution to your questions from 1000+ members.', )}
{t('Github Repository')} {t( 'Report issues or request features and get quick updates from our dev team.', )}
{!!WEBSITE_ID && (