import { Box, ButtonBase, Typography, useTheme } from '@mui/material'; import ChatIcon from '@mui/icons-material/Chat'; import qTradeLogo from '../../assets/Icons/q-trade-logo.webp'; import AppsIcon from '@mui/icons-material/Apps'; import { executeEvent } from '../../utils/events'; import AccountBalanceWalletIcon from '@mui/icons-material/AccountBalanceWallet'; import { useTranslation } from 'react-i18next'; export const Explore = ({ setDesktopViewMode }) => { const theme = useTheme(); const { t } = useTranslation(['core', 'tutorial']); return ( { executeEvent('addTab', { data: { service: 'APP', name: 'q-trade' }, }); executeEvent('open-apps-mode', {}); }} > {t('tutorial:initial.trade_qort', { postProcess: 'capitalize' })} { setDesktopViewMode('apps'); }} > {t('tutorial:initial.see_apps', { postProcess: 'capitalize' })} { executeEvent('openGroupMessage', { from: '0', }); }} > {t('tutorial:initial.general_chat', { postProcess: 'capitalize' })} { executeEvent('openWalletsApp', {}); }} > {t('core:wallet_other', { postProcess: 'capitalize' })} ); };